home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / misc / xpdf_0.8 / archive / xpdf-0.8-src.lha / xpdf-0.8-src / configure < prev    next >
Text File  |  1998-11-28  |  90KB  |  2,991 lines

  1. #! /bin/sh
  2.  
  3. # Guess values for system-dependent variables and create Makefiles.
  4. # Generated automatically using autoconf version 2.12 
  5. # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
  6. #
  7. # This configure script is free software; the Free Software Foundation
  8. # gives unlimited permission to copy, distribute and modify it.
  9.  
  10. # Defaults:
  11. ac_help=
  12. ac_default_prefix=/usr/local
  13. # Any additions from configure.in:
  14. ac_help="$ac_help
  15.   --enable-a4-paper       use A4 paper size instead of Letter for
  16.                           PostScript output"
  17. ac_help="$ac_help
  18.   --enable-japanese       enable Japanese font support"
  19. ac_help="$ac_help
  20.   --enable-no-text-select do not allow text selection"
  21. ac_help="$ac_help
  22.   --with-gzip             use gzip instead of uncompress"
  23. ac_help="$ac_help
  24.   --with-x                use the X Window System"
  25. ac_help="$ac_help
  26.   --with-Xpm-library=PATH   use Xpm library (pixmap library)"
  27. ac_help="$ac_help
  28.   --with-Xpm-includes=DIR  set directory for Xpm headers"
  29.  
  30. # Initialize some variables set by options.
  31. # The variables have the same names as the options, with
  32. # dashes changed to underlines.
  33. build=NONE
  34. cache_file=./config.cache
  35. exec_prefix=NONE
  36. host=NONE
  37. no_create=
  38. nonopt=NONE
  39. no_recursion=
  40. prefix=NONE
  41. program_prefix=NONE
  42. program_suffix=NONE
  43. program_transform_name=s,x,x,
  44. silent=
  45. site=
  46. srcdir=
  47. target=NONE
  48. verbose=
  49. x_includes=NONE
  50. x_libraries=NONE
  51. bindir='${exec_prefix}/bin'
  52. sbindir='${exec_prefix}/sbin'
  53. libexecdir='${exec_prefix}/libexec'
  54. datadir='${prefix}/share'
  55. sysconfdir='${prefix}/etc'
  56. sharedstatedir='${prefix}/com'
  57. localstatedir='${prefix}/var'
  58. libdir='${exec_prefix}/lib'
  59. includedir='${prefix}/include'
  60. oldincludedir='/usr/include'
  61. infodir='${prefix}/info'
  62. mandir='${prefix}/man'
  63.  
  64. # Initialize some other variables.
  65. subdirs=
  66. MFLAGS= MAKEFLAGS=
  67. # Maximum number of lines to put in a shell here document.
  68. ac_max_here_lines=12
  69.  
  70. ac_prev=
  71. for ac_option
  72. do
  73.  
  74.   # If the previous option needs an argument, assign it.
  75.   if test -n "$ac_prev"; then
  76.     eval "$ac_prev=\$ac_option"
  77.     ac_prev=
  78.     continue
  79.   fi
  80.  
  81.   case "$ac_option" in
  82.   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  83.   *) ac_optarg= ;;
  84.   esac
  85.  
  86.   # Accept the important Cygnus configure options, so we can diagnose typos.
  87.  
  88.   case "$ac_option" in
  89.  
  90.   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  91.     ac_prev=bindir ;;
  92.   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  93.     bindir="$ac_optarg" ;;
  94.  
  95.   -build | --build | --buil | --bui | --bu)
  96.     ac_prev=build ;;
  97.   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  98.     build="$ac_optarg" ;;
  99.  
  100.   -cache-file | --cache-file | --cache-fil | --cache-fi \
  101.   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  102.     ac_prev=cache_file ;;
  103.   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  104.   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  105.     cache_file="$ac_optarg" ;;
  106.  
  107.   -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  108.     ac_prev=datadir ;;
  109.   -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
  110.   | --da=*)
  111.     datadir="$ac_optarg" ;;
  112.  
  113.   -disable-* | --disable-*)
  114.     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  115.     # Reject names that are not valid shell variable names.
  116.     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  117.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  118.     fi
  119.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  120.     eval "enable_${ac_feature}=no" ;;
  121.  
  122.   -enable-* | --enable-*)
  123.     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  124.     # Reject names that are not valid shell variable names.
  125.     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  126.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  127.     fi
  128.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  129.     case "$ac_option" in
  130.       *=*) ;;
  131.       *) ac_optarg=yes ;;
  132.     esac
  133.     eval "enable_${ac_feature}='$ac_optarg'" ;;
  134.  
  135.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  136.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  137.   | --exec | --exe | --ex)
  138.     ac_prev=exec_prefix ;;
  139.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  140.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  141.   | --exec=* | --exe=* | --ex=*)
  142.     exec_prefix="$ac_optarg" ;;
  143.  
  144.   -gas | --gas | --ga | --g)
  145.     # Obsolete; use --with-gas.
  146.     with_gas=yes ;;
  147.  
  148.   -help | --help | --hel | --he)
  149.     # Omit some internal or obsolete options to make the list less imposing.
  150.     # This message is too long to be a string in the A/UX 3.1 sh.
  151.     cat << EOF
  152. Usage: configure [options] [host]
  153. Options: [defaults in brackets after descriptions]
  154. Configuration:
  155.   --cache-file=FILE       cache test results in FILE
  156.   --help                  print this message
  157.   --no-create             do not create output files
  158.   --quiet, --silent       do not print \`checking...' messages
  159.   --version               print the version of autoconf that created configure
  160. Directory and file names:
  161.   --prefix=PREFIX         install architecture-independent files in PREFIX
  162.                           [$ac_default_prefix]
  163.   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  164.                           [same as prefix]
  165.   --bindir=DIR            user executables in DIR [EPREFIX/bin]
  166.   --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  167.   --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  168.   --datadir=DIR           read-only architecture-independent data in DIR
  169.                           [PREFIX/share]
  170.   --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  171.   --sharedstatedir=DIR    modifiable architecture-independent data in DIR
  172.                           [PREFIX/com]
  173.   --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  174.   --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  175.   --includedir=DIR        C header files in DIR [PREFIX/include]
  176.   --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  177.   --infodir=DIR           info documentation in DIR [PREFIX/info]
  178.   --mandir=DIR            man documentation in DIR [PREFIX/man]
  179.   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  180.   --program-prefix=PREFIX prepend PREFIX to installed program names
  181.   --program-suffix=SUFFIX append SUFFIX to installed program names
  182.   --program-transform-name=PROGRAM
  183.                           run sed PROGRAM on installed program names
  184. EOF
  185.     cat << EOF
  186. Host type:
  187.   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  188.   --host=HOST             configure for HOST [guessed]
  189.   --target=TARGET         configure for TARGET [TARGET=HOST]
  190. Features and packages:
  191.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  192.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  193.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  194.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  195.   --x-includes=DIR        X include files are in DIR
  196.   --x-libraries=DIR       X library files are in DIR
  197. EOF
  198.     if test -n "$ac_help"; then
  199.       echo "--enable and --with options recognized:$ac_help"
  200.     fi
  201.     exit 0 ;;
  202.  
  203.   -host | --host | --hos | --ho)
  204.     ac_prev=host ;;
  205.   -host=* | --host=* | --hos=* | --ho=*)
  206.     host="$ac_optarg" ;;
  207.  
  208.   -includedir | --includedir | --includedi | --included | --include \
  209.   | --includ | --inclu | --incl | --inc)
  210.     ac_prev=includedir ;;
  211.   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  212.   | --includ=* | --inclu=* | --incl=* | --inc=*)
  213.     includedir="$ac_optarg" ;;
  214.  
  215.   -infodir | --infodir | --infodi | --infod | --info | --inf)
  216.     ac_prev=infodir ;;
  217.   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  218.     infodir="$ac_optarg" ;;
  219.  
  220.   -libdir | --libdir | --libdi | --libd)
  221.     ac_prev=libdir ;;
  222.   -libdir=* | --libdir=* | --libdi=* | --libd=*)
  223.     libdir="$ac_optarg" ;;
  224.  
  225.   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  226.   | --libexe | --libex | --libe)
  227.     ac_prev=libexecdir ;;
  228.   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  229.   | --libexe=* | --libex=* | --libe=*)
  230.     libexecdir="$ac_optarg" ;;
  231.  
  232.   -localstatedir | --localstatedir | --localstatedi | --localstated \
  233.   | --localstate | --localstat | --localsta | --localst \
  234.   | --locals | --local | --loca | --loc | --lo)
  235.     ac_prev=localstatedir ;;
  236.   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  237.   | --localstate=* | --localstat=* | --localsta=* | --localst=* \
  238.   | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  239.     localstatedir="$ac_optarg" ;;
  240.  
  241.   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  242.     ac_prev=mandir ;;
  243.   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  244.     mandir="$ac_optarg" ;;
  245.  
  246.   -nfp | --nfp | --nf)
  247.     # Obsolete; use --without-fp.
  248.     with_fp=no ;;
  249.  
  250.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  251.   | --no-cr | --no-c)
  252.     no_create=yes ;;
  253.  
  254.   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  255.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  256.     no_recursion=yes ;;
  257.  
  258.   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  259.   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  260.   | --oldin | --oldi | --old | --ol | --o)
  261.     ac_prev=oldincludedir ;;
  262.   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  263.   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  264.   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  265.     oldincludedir="$ac_optarg" ;;
  266.  
  267.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  268.     ac_prev=prefix ;;
  269.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  270.     prefix="$ac_optarg" ;;
  271.  
  272.   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  273.   | --program-pre | --program-pr | --program-p)
  274.     ac_prev=program_prefix ;;
  275.   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  276.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  277.     program_prefix="$ac_optarg" ;;
  278.  
  279.   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  280.   | --program-suf | --program-su | --program-s)
  281.     ac_prev=program_suffix ;;
  282.   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  283.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  284.     program_suffix="$ac_optarg" ;;
  285.  
  286.   -program-transform-name | --program-transform-name \
  287.   | --program-transform-nam | --program-transform-na \
  288.   | --program-transform-n | --program-transform- \
  289.   | --program-transform | --program-transfor \
  290.   | --program-transfo | --program-transf \
  291.   | --program-trans | --program-tran \
  292.   | --progr-tra | --program-tr | --program-t)
  293.     ac_prev=program_transform_name ;;
  294.   -program-transform-name=* | --program-transform-name=* \
  295.   | --program-transform-nam=* | --program-transform-na=* \
  296.   | --program-transform-n=* | --program-transform-=* \
  297.   | --program-transform=* | --program-transfor=* \
  298.   | --program-transfo=* | --program-transf=* \
  299.   | --program-trans=* | --program-tran=* \
  300.   | --progr-tra=* | --program-tr=* | --program-t=*)
  301.     program_transform_name="$ac_optarg" ;;
  302.  
  303.   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  304.   | -silent | --silent | --silen | --sile | --sil)
  305.     silent=yes ;;
  306.  
  307.   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  308.     ac_prev=sbindir ;;
  309.   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  310.   | --sbi=* | --sb=*)
  311.     sbindir="$ac_optarg" ;;
  312.  
  313.   -sharedstatedir | --sharedstatedir | --sharedstatedi \
  314.   | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  315.   | --sharedst | --shareds | --shared | --share | --shar \
  316.   | --sha | --sh)
  317.     ac_prev=sharedstatedir ;;
  318.   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  319.   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  320.   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  321.   | --sha=* | --sh=*)
  322.     sharedstatedir="$ac_optarg" ;;
  323.  
  324.   -site | --site | --sit)
  325.     ac_prev=site ;;
  326.   -site=* | --site=* | --sit=*)
  327.     site="$ac_optarg" ;;
  328.  
  329.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  330.     ac_prev=srcdir ;;
  331.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  332.     srcdir="$ac_optarg" ;;
  333.  
  334.   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  335.   | --syscon | --sysco | --sysc | --sys | --sy)
  336.     ac_prev=sysconfdir ;;
  337.   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  338.   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  339.     sysconfdir="$ac_optarg" ;;
  340.  
  341.   -target | --target | --targe | --targ | --tar | --ta | --t)
  342.     ac_prev=target ;;
  343.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  344.     target="$ac_optarg" ;;
  345.  
  346.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  347.     verbose=yes ;;
  348.  
  349.   -version | --version | --versio | --versi | --vers)
  350.     echo "configure generated by autoconf version 2.12"
  351.     exit 0 ;;
  352.  
  353.   -with-* | --with-*)
  354.     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  355.     # Reject names that are not valid shell variable names.
  356.     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  357.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  358.     fi
  359.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  360.     case "$ac_option" in
  361.       *=*) ;;
  362.       *) ac_optarg=yes ;;
  363.     esac
  364.     eval "with_${ac_package}='$ac_optarg'" ;;
  365.  
  366.   -without-* | --without-*)
  367.     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  368.     # Reject names that are not valid shell variable names.
  369.     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  370.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  371.     fi
  372.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  373.     eval "with_${ac_package}=no" ;;
  374.  
  375.   --x)
  376.     # Obsolete; use --with-x.
  377.     with_x=yes ;;
  378.  
  379.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  380.   | --x-incl | --x-inc | --x-in | --x-i)
  381.     ac_prev=x_includes ;;
  382.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  383.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  384.     x_includes="$ac_optarg" ;;
  385.  
  386.   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  387.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  388.     ac_prev=x_libraries ;;
  389.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  390.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  391.     x_libraries="$ac_optarg" ;;
  392.  
  393.   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  394.     ;;
  395.  
  396.   *)
  397.     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  398.       echo "configure: warning: $ac_option: invalid host type" 1>&2
  399.     fi
  400.     if test "x$nonopt" != xNONE; then
  401.       { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
  402.     fi
  403.     nonopt="$ac_option"
  404.     ;;
  405.  
  406.   esac
  407. done
  408.  
  409. if test -n "$ac_prev"; then
  410.   { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  411. fi
  412.  
  413. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  414.  
  415. # File descriptor usage:
  416. # 0 standard input
  417. # 1 file creation
  418. # 2 errors and warnings
  419. # 3 some systems may open it to /dev/tty
  420. # 4 used on the Kubota Titan
  421. # 6 checking for... messages and results
  422. # 5 compiler messages saved in config.log
  423. if test "$silent" = yes; then
  424.   exec 6>/dev/null
  425. else
  426.   exec 6>&1
  427. fi
  428. exec 5>./config.log
  429.  
  430. echo "\
  431. This file contains any messages produced by compilers while
  432. running configure, to aid debugging if configure makes a mistake.
  433. " 1>&5
  434.  
  435. # Strip out --no-create and --no-recursion so they do not pile up.
  436. # Also quote any args containing shell metacharacters.
  437. ac_configure_args=
  438. for ac_arg
  439. do
  440.   case "$ac_arg" in
  441.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  442.   | --no-cr | --no-c) ;;
  443.   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  444.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  445.   *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
  446.   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  447.   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  448.   esac
  449. done
  450.  
  451. # NLS nuisances.
  452. # Only set these to C if already set.  These must not be set unconditionally
  453. # because not all systems understand e.g. LANG=C (notably SCO).
  454. # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
  455. # Non-C LC_CTYPE values break the ctype check.
  456. if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  457. if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  458. if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
  459. if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
  460.  
  461. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  462. rm -rf conftest* confdefs.h
  463. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  464. echo > confdefs.h
  465.  
  466. # A filename unique to this package, relative to the directory that
  467. # configure is in, which we can look for to find out if srcdir is correct.
  468. ac_unique_file=xpdf/xpdf.cc
  469.  
  470. # Find the source files, if location was not specified.
  471. if test -z "$srcdir"; then
  472.   ac_srcdir_defaulted=yes
  473.   # Try the directory containing this script, then its parent.
  474.   ac_prog=$0
  475.   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  476.   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  477.   srcdir=$ac_confdir
  478.   if test ! -r $srcdir/$ac_unique_file; then
  479.     srcdir=..
  480.   fi
  481. else
  482.   ac_srcdir_defaulted=no
  483. fi
  484. if test ! -r $srcdir/$ac_unique_file; then
  485.   if test "$ac_srcdir_defaulted" = yes; then
  486.     { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  487.   else
  488.     { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  489.   fi
  490. fi
  491. srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  492.  
  493. # Prefer explicitly selected file to automatically selected ones.
  494. if test -z "$CONFIG_SITE"; then
  495.   if test "x$prefix" != xNONE; then
  496.     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  497.   else
  498.     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  499.   fi
  500. fi
  501. for ac_site_file in $CONFIG_SITE; do
  502.   if test -r "$ac_site_file"; then
  503.     echo "loading site script $ac_site_file"
  504.     . "$ac_site_file"
  505.   fi
  506. done
  507.  
  508. if test -r "$cache_file"; then
  509.   echo "loading cache $cache_file"
  510.   . $cache_file
  511. else
  512.   echo "creating cache $cache_file"
  513.   > $cache_file
  514. fi
  515.  
  516. ac_ext=c
  517. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  518. ac_cpp='$CPP $CPPFLAGS'
  519. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  520. ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  521. cross_compiling=$ac_cv_prog_cc_cross
  522.  
  523. if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  524.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  525.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  526.     ac_n= ac_c='
  527. ' ac_t='    '
  528.   else
  529.     ac_n=-n ac_c= ac_t=
  530.   fi
  531. else
  532.   ac_n= ac_c='\c' ac_t=
  533. fi
  534.  
  535.  
  536.  
  537. OPTIONS=""
  538. # Check whether --enable-a4-paper or --disable-a4-paper was given.
  539. if test "${enable_a4_paper+set}" = set; then
  540.   enableval="$enable_a4_paper"
  541.   OPTIONS="$OPTIONS -DA4_PAPER"
  542. fi
  543.  
  544. # Check whether --enable-japanese or --disable-japanese was given.
  545. if test "${enable_japanese+set}" = set; then
  546.   enableval="$enable_japanese"
  547.   OPTIONS="$OPTIONS -DJAPANESE_SUPPORT"
  548. fi
  549.  
  550. # Check whether --enable-no-text-select or --disable-no-text-select was given.
  551. if test "${enable_no_text_select+set}" = set; then
  552.   enableval="$enable_no_text_select"
  553.   OPTIONS="$OPTIONS -DNO_TEXT_SELECT"
  554. fi
  555.  
  556. # Check whether --with-gzip or --without-gzip was given.
  557. if test "${with_gzip+set}" = set; then
  558.   withval="$with_gzip"
  559.   OPTIONS="$OPTIONS -DUSE_GZIP"
  560. fi
  561.  
  562.  
  563.  
  564. # Extract the first word of "gcc", so it can be a program name with args.
  565. set dummy gcc; ac_word=$2
  566. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  567. echo "configure:568: checking for $ac_word" >&5
  568. if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  569.   echo $ac_n "(cached) $ac_c" 1>&6
  570. else
  571.   if test -n "$CC"; then
  572.   ac_cv_prog_CC="$CC" # Let the user override the test.
  573. else
  574.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  575.   for ac_dir in $PATH; do
  576.     test -z "$ac_dir" && ac_dir=.
  577.     if test -f $ac_dir/$ac_word; then
  578.       ac_cv_prog_CC="gcc"
  579.       break
  580.     fi
  581.   done
  582.   IFS="$ac_save_ifs"
  583. fi
  584. fi
  585. CC="$ac_cv_prog_CC"
  586. if test -n "$CC"; then
  587.   echo "$ac_t""$CC" 1>&6
  588. else
  589.   echo "$ac_t""no" 1>&6
  590. fi
  591.  
  592. if test -z "$CC"; then
  593.   # Extract the first word of "cc", so it can be a program name with args.
  594. set dummy cc; ac_word=$2
  595. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  596. echo "configure:597: checking for $ac_word" >&5
  597. if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  598.   echo $ac_n "(cached) $ac_c" 1>&6
  599. else
  600.   if test -n "$CC"; then
  601.   ac_cv_prog_CC="$CC" # Let the user override the test.
  602. else
  603.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  604.   ac_prog_rejected=no
  605.   for ac_dir in $PATH; do
  606.     test -z "$ac_dir" && ac_dir=.
  607.     if test -f $ac_dir/$ac_word; then
  608.       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
  609.         ac_prog_rejected=yes
  610.     continue
  611.       fi
  612.       ac_cv_prog_CC="cc"
  613.       break
  614.     fi
  615.   done
  616.   IFS="$ac_save_ifs"
  617. if test $ac_prog_rejected = yes; then
  618.   # We found a bogon in the path, so make sure we never use it.
  619.   set dummy $ac_cv_prog_CC
  620.   shift
  621.   if test $# -gt 0; then
  622.     # We chose a different compiler from the bogus one.
  623.     # However, it has the same basename, so the bogon will be chosen
  624.     # first if we set CC to just the basename; use the full file name.
  625.     shift
  626.     set dummy "$ac_dir/$ac_word" "$@"
  627.     shift
  628.     ac_cv_prog_CC="$@"
  629.   fi
  630. fi
  631. fi
  632. fi
  633. CC="$ac_cv_prog_CC"
  634. if test -n "$CC"; then
  635.   echo "$ac_t""$CC" 1>&6
  636. else
  637.   echo "$ac_t""no" 1>&6
  638. fi
  639.  
  640.   test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
  641. fi
  642.  
  643. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  644. echo "configure:645: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  645.  
  646. ac_ext=c
  647. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  648. ac_cpp='$CPP $CPPFLAGS'
  649. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  650. ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  651. cross_compiling=$ac_cv_prog_cc_cross
  652.  
  653. cat > conftest.$ac_ext <<EOF
  654. #line 655 "configure"
  655. #include "confdefs.h"
  656. main(){return(0);}
  657. EOF
  658. if { (eval echo configure:659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  659.   ac_cv_prog_cc_works=yes
  660.   # If we can't run a trivial program, we are probably using a cross compiler.
  661.   if (./conftest; exit) 2>/dev/null; then
  662.     ac_cv_prog_cc_cross=no
  663.   else
  664.     ac_cv_prog_cc_cross=yes
  665.   fi
  666. else
  667.   echo "configure: failed program was:" >&5
  668.   cat conftest.$ac_ext >&5
  669.   ac_cv_prog_cc_works=no
  670. fi
  671. rm -fr conftest*
  672.  
  673. echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
  674. if test $ac_cv_prog_cc_works = no; then
  675.   { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  676. fi
  677. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  678. echo "configure:679: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  679. echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  680. cross_compiling=$ac_cv_prog_cc_cross
  681.  
  682. echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  683. echo "configure:684: checking whether we are using GNU C" >&5
  684. if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
  685.   echo $ac_n "(cached) $ac_c" 1>&6
  686. else
  687.   cat > conftest.c <<EOF
  688. #ifdef __GNUC__
  689.   yes;
  690. #endif
  691. EOF
  692. if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:693: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  693.   ac_cv_prog_gcc=yes
  694. else
  695.   ac_cv_prog_gcc=no
  696. fi
  697. fi
  698.  
  699. echo "$ac_t""$ac_cv_prog_gcc" 1>&6
  700.  
  701. if test $ac_cv_prog_gcc = yes; then
  702.   GCC=yes
  703.   ac_test_CFLAGS="${CFLAGS+set}"
  704.   ac_save_CFLAGS="$CFLAGS"
  705.   CFLAGS=
  706.   echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
  707. echo "configure:708: checking whether ${CC-cc} accepts -g" >&5
  708. if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
  709.   echo $ac_n "(cached) $ac_c" 1>&6
  710. else
  711.   echo 'void f(){}' > conftest.c
  712. if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  713.   ac_cv_prog_cc_g=yes
  714. else
  715.   ac_cv_prog_cc_g=no
  716. fi
  717. rm -f conftest*
  718.  
  719. fi
  720.  
  721. echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
  722.   if test "$ac_test_CFLAGS" = set; then
  723.     CFLAGS="$ac_save_CFLAGS"
  724.   elif test $ac_cv_prog_cc_g = yes; then
  725.     CFLAGS="-g -O2"
  726.   else
  727.     CFLAGS="-O2"
  728.   fi
  729. else
  730.   GCC=
  731.   test "${CFLAGS+set}" = set || CFLAGS="-g"
  732. fi
  733.  
  734. echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6
  735. echo "configure:736: checking for POSIXized ISC" >&5
  736. if test -d /etc/conf/kconfig.d &&
  737.   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  738. then
  739.   echo "$ac_t""yes" 1>&6
  740.   ISC=yes # If later tests want to check for ISC.
  741.   cat >> confdefs.h <<\EOF
  742. #define _POSIX_SOURCE 1
  743. EOF
  744.  
  745.   if test "$GCC" = yes; then
  746.     CC="$CC -posix"
  747.   else
  748.     CC="$CC -Xp"
  749.   fi
  750. else
  751.   echo "$ac_t""no" 1>&6
  752.   ISC=
  753. fi
  754.  
  755.  
  756.  
  757.  
  758. echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&6
  759. echo "configure:760: checking for ${CC-cc} option to accept ANSI C" >&5
  760. if eval "test \"`echo '$''{'am_cv_prog_cc_stdc'+set}'`\" = set"; then
  761.   echo $ac_n "(cached) $ac_c" 1>&6
  762. else
  763.   am_cv_prog_cc_stdc=no
  764. ac_save_CC="$CC"
  765. # Don't try gcc -ansi; that turns off useful extensions and
  766. # breaks some systems' header files.
  767. # AIX            -qlanglvl=ansi
  768. # Ultrix and OSF/1    -std1
  769. # HP-UX            -Aa -D_HPUX_SOURCE
  770. # SVR4            -Xc -D__EXTENSIONS__
  771. for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
  772. do
  773.   CC="$ac_save_CC $ac_arg"
  774.   cat > conftest.$ac_ext <<EOF
  775. #line 776 "configure"
  776. #include "confdefs.h"
  777. #include <stdarg.h>
  778. #include <stdio.h>
  779. #include <sys/types.h>
  780. #include <sys/stat.h>
  781. /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
  782. struct buf { int x; };
  783. FILE * (*rcsopen) (struct buf *, struct stat *, int);
  784. static char *e (p, i)
  785.      char **p;
  786.      int i;
  787. {
  788.   return p[i];
  789. }
  790. static char *f (char * (*g) (char **, int), char **p, ...)
  791. {
  792.   char *s;
  793.   va_list v;
  794.   va_start (v,p);
  795.   s = g (p, va_arg (v,int));
  796.   va_end (v);
  797.   return s;
  798. }
  799. int test (int i, double x);
  800. struct s1 {int (*f) (int a);};
  801. struct s2 {int (*f) (double a);};
  802. int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
  803. int argc;
  804. char **argv;
  805.  
  806. int main() {
  807.  
  808. return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
  809.  
  810. ; return 0; }
  811. EOF
  812. if { (eval echo configure:813: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  813.   rm -rf conftest*
  814.   am_cv_prog_cc_stdc="$ac_arg"; break
  815. else
  816.   echo "configure: failed program was:" >&5
  817.   cat conftest.$ac_ext >&5
  818. fi
  819. rm -f conftest*
  820. done
  821. CC="$ac_save_CC"
  822.  
  823. fi
  824.  
  825. if test -z "$am_cv_prog_cc_stdc"; then
  826.   echo "$ac_t""none needed" 1>&6
  827. else
  828.   echo "$ac_t""$am_cv_prog_cc_stdc" 1>&6
  829. fi
  830. case "x$am_cv_prog_cc_stdc" in
  831.   x|xno) ;;
  832.   *) CC="$CC $am_cv_prog_cc_stdc" ;;
  833. esac
  834.  
  835. #if test -z "$CXX" -a "$CC" = "gcc"; then
  836. #  CXX="gcc"
  837. #fi
  838. for ac_prog in $CCC c++ g++ gcc CC cxx cc++
  839. do
  840. # Extract the first word of "$ac_prog", so it can be a program name with args.
  841. set dummy $ac_prog; ac_word=$2
  842. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  843. echo "configure:844: checking for $ac_word" >&5
  844. if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
  845.   echo $ac_n "(cached) $ac_c" 1>&6
  846. else
  847.   if test -n "$CXX"; then
  848.   ac_cv_prog_CXX="$CXX" # Let the user override the test.
  849. else
  850.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  851.   for ac_dir in $PATH; do
  852.     test -z "$ac_dir" && ac_dir=.
  853.     if test -f $ac_dir/$ac_word; then
  854.       ac_cv_prog_CXX="$ac_prog"
  855.       break
  856.     fi
  857.   done
  858.   IFS="$ac_save_ifs"
  859. fi
  860. fi
  861. CXX="$ac_cv_prog_CXX"
  862. if test -n "$CXX"; then
  863.   echo "$ac_t""$CXX" 1>&6
  864. else
  865.   echo "$ac_t""no" 1>&6
  866. fi
  867.  
  868. test -n "$CXX" && break
  869. done
  870. test -n "$CXX" || CXX="gcc"
  871.  
  872.  
  873. echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  874. echo "configure:875: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
  875.  
  876. ac_ext=C
  877. # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  878. ac_cpp='$CXXCPP $CPPFLAGS'
  879. ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  880. ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  881. cross_compiling=$ac_cv_prog_cxx_cross
  882.  
  883. cat > conftest.$ac_ext <<EOF
  884. #line 885 "configure"
  885. #include "confdefs.h"
  886. main(){return(0);}
  887. EOF
  888. if { (eval echo configure:889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  889.   ac_cv_prog_cxx_works=yes
  890.   # If we can't run a trivial program, we are probably using a cross compiler.
  891.   if (./conftest; exit) 2>/dev/null; then
  892.     ac_cv_prog_cxx_cross=no
  893.   else
  894.     ac_cv_prog_cxx_cross=yes
  895.   fi
  896. else
  897.   echo "configure: failed program was:" >&5
  898.   cat conftest.$ac_ext >&5
  899.   ac_cv_prog_cxx_works=no
  900. fi
  901. rm -fr conftest*
  902. ac_ext=c
  903. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  904. ac_cpp='$CPP $CPPFLAGS'
  905. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  906. ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  907. cross_compiling=$ac_cv_prog_cc_cross
  908.  
  909. echo "$ac_t""$ac_cv_prog_cxx_works" 1>&6
  910. if test $ac_cv_prog_cxx_works = no; then
  911.   { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; }
  912. fi
  913. echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  914. echo "configure:915: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
  915. echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
  916. cross_compiling=$ac_cv_prog_cxx_cross
  917.  
  918. echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
  919. echo "configure:920: checking whether we are using GNU C++" >&5
  920. if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
  921.   echo $ac_n "(cached) $ac_c" 1>&6
  922. else
  923.   cat > conftest.C <<EOF
  924. #ifdef __GNUC__
  925.   yes;
  926. #endif
  927. EOF
  928. if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:929: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  929.   ac_cv_prog_gxx=yes
  930. else
  931.   ac_cv_prog_gxx=no
  932. fi
  933. fi
  934.  
  935. echo "$ac_t""$ac_cv_prog_gxx" 1>&6
  936.  
  937. if test $ac_cv_prog_gxx = yes; then
  938.   GXX=yes
  939.   ac_test_CXXFLAGS="${CXXFLAGS+set}"
  940.   ac_save_CXXFLAGS="$CXXFLAGS"
  941.   CXXFLAGS=
  942.   echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
  943. echo "configure:944: checking whether ${CXX-g++} accepts -g" >&5
  944. if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
  945.   echo $ac_n "(cached) $ac_c" 1>&6
  946. else
  947.   echo 'void f(){}' > conftest.cc
  948. if test -z "`${CXX-g++} -g -c conftest.cc 2>&1`"; then
  949.   ac_cv_prog_cxx_g=yes
  950. else
  951.   ac_cv_prog_cxx_g=no
  952. fi
  953. rm -f conftest*
  954.  
  955. fi
  956.  
  957. echo "$ac_t""$ac_cv_prog_cxx_g" 1>&6
  958.   if test "$ac_test_CXXFLAGS" = set; then
  959.     CXXFLAGS="$ac_save_CXXFLAGS"
  960.   elif test $ac_cv_prog_cxx_g = yes; then
  961.     CXXFLAGS="-g -O2"
  962.   else
  963.     CXXFLAGS="-O2"
  964.   fi
  965. else
  966.   GXX=
  967.   test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
  968. fi
  969.  
  970. ac_aux_dir=
  971. for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  972.   if test -f $ac_dir/install-sh; then
  973.     ac_aux_dir=$ac_dir
  974.     ac_install_sh="$ac_aux_dir/install-sh -c"
  975.     break
  976.   elif test -f $ac_dir/install.sh; then
  977.     ac_aux_dir=$ac_dir
  978.     ac_install_sh="$ac_aux_dir/install.sh -c"
  979.     break
  980.   fi
  981. done
  982. if test -z "$ac_aux_dir"; then
  983.   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
  984. fi
  985. ac_config_guess=$ac_aux_dir/config.guess
  986. ac_config_sub=$ac_aux_dir/config.sub
  987. ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
  988.  
  989. # Find a good install program.  We prefer a C program (faster),
  990. # so one script is as good as another.  But avoid the broken or
  991. # incompatible versions:
  992. # SysV /etc/install, /usr/sbin/install
  993. # SunOS /usr/etc/install
  994. # IRIX /sbin/install
  995. # AIX /bin/install
  996. # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  997. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  998. # ./install, which can be erroneously created by make from ./install.sh.
  999. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
  1000. echo "configure:1001: checking for a BSD compatible install" >&5
  1001. if test -z "$INSTALL"; then
  1002. if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
  1003.   echo $ac_n "(cached) $ac_c" 1>&6
  1004. else
  1005.     IFS="${IFS=     }"; ac_save_IFS="$IFS"; IFS="${IFS}:"
  1006.   for ac_dir in $PATH; do
  1007.     # Account for people who put trailing slashes in PATH elements.
  1008.     case "$ac_dir/" in
  1009.     /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
  1010.     *)
  1011.       # OSF1 and SCO ODT 3.0 have their own names for install.
  1012.       for ac_prog in ginstall installbsd scoinst install; do
  1013.         if test -f $ac_dir/$ac_prog; then
  1014.       if test $ac_prog = install &&
  1015.             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  1016.         # AIX install.  It has an incompatible calling convention.
  1017.         # OSF/1 installbsd also uses dspmsg, but is usable.
  1018.         :
  1019.       else
  1020.         ac_cv_path_install="$ac_dir/$ac_prog -c"
  1021.         break 2
  1022.       fi
  1023.     fi
  1024.       done
  1025.       ;;
  1026.     esac
  1027.   done
  1028.   IFS="$ac_save_IFS"
  1029.  
  1030. fi
  1031.   if test "${ac_cv_path_install+set}" = set; then
  1032.     INSTALL="$ac_cv_path_install"
  1033.   else
  1034.     # As a last resort, use the slow shell script.  We don't cache a
  1035.     # path for INSTALL within a source directory, because that will
  1036.     # break other packages using the cache if that directory is
  1037.     # removed, or if the path is relative.
  1038.     INSTALL="$ac_install_sh"
  1039.   fi
  1040. fi
  1041. echo "$ac_t""$INSTALL" 1>&6
  1042.  
  1043. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  1044. # It thinks the first close brace ends the variable substitution.
  1045. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  1046.  
  1047. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  1048.  
  1049. # Extract the first word of "ranlib", so it can be a program name with args.
  1050. set dummy ranlib; ac_word=$2
  1051. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1052. echo "configure:1053: checking for $ac_word" >&5
  1053. if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  1054.   echo $ac_n "(cached) $ac_c" 1>&6
  1055. else
  1056.   if test -n "$RANLIB"; then
  1057.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  1058. else
  1059.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1060.   for ac_dir in $PATH; do
  1061.     test -z "$ac_dir" && ac_dir=.
  1062.     if test -f $ac_dir/$ac_word; then
  1063.       ac_cv_prog_RANLIB="ranlib"
  1064.       break
  1065.     fi
  1066.   done
  1067.   IFS="$ac_save_ifs"
  1068.   test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
  1069. fi
  1070. fi
  1071. RANLIB="$ac_cv_prog_RANLIB"
  1072. if test -n "$RANLIB"; then
  1073.   echo "$ac_t""$RANLIB" 1>&6
  1074. else
  1075.   echo "$ac_t""no" 1>&6
  1076. fi
  1077.  
  1078. # Extract the first word of "strip", so it can be a program name with args.
  1079. set dummy strip; ac_word=$2
  1080. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1081. echo "configure:1082: checking for $ac_word" >&5
  1082. if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
  1083.   echo $ac_n "(cached) $ac_c" 1>&6
  1084. else
  1085.   if test -n "$STRIP"; then
  1086.   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
  1087. else
  1088.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1089.   for ac_dir in $PATH; do
  1090.     test -z "$ac_dir" && ac_dir=.
  1091.     if test -f $ac_dir/$ac_word; then
  1092.       ac_cv_prog_STRIP="strip"
  1093.       break
  1094.     fi
  1095.   done
  1096.   IFS="$ac_save_ifs"
  1097.   test -z "$ac_cv_prog_STRIP" && ac_cv_prog_STRIP=":"
  1098. fi
  1099. fi
  1100. STRIP="$ac_cv_prog_STRIP"
  1101. if test -n "$STRIP"; then
  1102.   echo "$ac_t""$STRIP" 1>&6
  1103. else
  1104.   echo "$ac_t""no" 1>&6
  1105. fi
  1106.  
  1107.  
  1108. echo $ac_n "checking for OS/2 (with EMX)""... $ac_c" 1>&6
  1109. echo "configure:1110: checking for OS/2 (with EMX)" >&5
  1110. if eval "test \"`echo '$''{'xpdf_cv_sys_os2'+set}'`\" = set"; then
  1111.   echo $ac_n "(cached) $ac_c" 1>&6
  1112. else
  1113.   cat > conftest.$ac_ext <<EOF
  1114. #line 1115 "configure"
  1115. #include "confdefs.h"
  1116.  
  1117. int main() {
  1118. __EMX__
  1119. ; return 0; }
  1120. EOF
  1121. if { (eval echo configure:1122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  1122.   rm -rf conftest*
  1123.   xpdf_cv_sys_os2=yes
  1124. else
  1125.   echo "configure: failed program was:" >&5
  1126.   cat conftest.$ac_ext >&5
  1127.   rm -rf conftest*
  1128.   xpdf_cv_sys_os2=no
  1129. fi
  1130. rm -f conftest*
  1131. fi
  1132.  
  1133. echo "$ac_t""$xpdf_cv_sys_os2" 1>&6
  1134. if test "$xpdf_cv_sys_os2" = yes; then
  1135.   EXE=".exe"
  1136.   LIBPREFIX=""
  1137.   AR="ar -rc"
  1138. else
  1139.   EXE=""
  1140.   LIBPREFIX="lib"
  1141.   AR="ar rc"
  1142. fi
  1143.  
  1144.  
  1145.  
  1146.  
  1147. echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
  1148. echo "configure:1149: checking how to run the C preprocessor" >&5
  1149. # On Suns, sometimes $CPP names a directory.
  1150. if test -n "$CPP" && test -d "$CPP"; then
  1151.   CPP=
  1152. fi
  1153. if test -z "$CPP"; then
  1154. if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
  1155.   echo $ac_n "(cached) $ac_c" 1>&6
  1156. else
  1157.     # This must be in double quotes, not single quotes, because CPP may get
  1158.   # substituted into the Makefile and "${CC-cc}" will confuse make.
  1159.   CPP="${CC-cc} -E"
  1160.   # On the NeXT, cc -E runs the code through the compiler's parser,
  1161.   # not just through cpp.
  1162.   cat > conftest.$ac_ext <<EOF
  1163. #line 1164 "configure"
  1164. #include "confdefs.h"
  1165. #include <assert.h>
  1166. Syntax Error
  1167. EOF
  1168. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1169. { (eval echo configure:1170: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1170. ac_err=`grep -v '^ *+' conftest.out`
  1171. if test -z "$ac_err"; then
  1172.   :
  1173. else
  1174.   echo "$ac_err" >&5
  1175.   echo "configure: failed program was:" >&5
  1176.   cat conftest.$ac_ext >&5
  1177.   rm -rf conftest*
  1178.   CPP="${CC-cc} -E -traditional-cpp"
  1179.   cat > conftest.$ac_ext <<EOF
  1180. #line 1181 "configure"
  1181. #include "confdefs.h"
  1182. #include <assert.h>
  1183. Syntax Error
  1184. EOF
  1185. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1186. { (eval echo configure:1187: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1187. ac_err=`grep -v '^ *+' conftest.out`
  1188. if test -z "$ac_err"; then
  1189.   :
  1190. else
  1191.   echo "$ac_err" >&5
  1192.   echo "configure: failed program was:" >&5
  1193.   cat conftest.$ac_ext >&5
  1194.   rm -rf conftest*
  1195.   CPP=/lib/cpp
  1196. fi
  1197. rm -f conftest*
  1198. fi
  1199. rm -f conftest*
  1200.   ac_cv_prog_CPP="$CPP"
  1201. fi
  1202.   CPP="$ac_cv_prog_CPP"
  1203. else
  1204.   ac_cv_prog_CPP="$CPP"
  1205. fi
  1206. echo "$ac_t""$CPP" 1>&6
  1207.  
  1208. # If we find X, set shell vars x_includes and x_libraries to the
  1209. # paths, otherwise set no_x=yes.
  1210. # Uses ac_ vars as temps to allow command line to override cache and checks.
  1211. # --without-x overrides everything else, but does not touch the cache.
  1212. echo $ac_n "checking for X""... $ac_c" 1>&6
  1213. echo "configure:1214: checking for X" >&5
  1214.  
  1215. # Check whether --with-x or --without-x was given.
  1216. if test "${with_x+set}" = set; then
  1217.   withval="$with_x"
  1218.   :
  1219. fi
  1220.  
  1221. # $have_x is `yes', `no', `disabled', or empty when we do not yet know.
  1222. if test "x$with_x" = xno; then
  1223.   # The user explicitly disabled X.
  1224.   have_x=disabled
  1225. else
  1226.   if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then
  1227.     # Both variables are already set.
  1228.     have_x=yes
  1229.   else
  1230. if eval "test \"`echo '$''{'ac_cv_have_x'+set}'`\" = set"; then
  1231.   echo $ac_n "(cached) $ac_c" 1>&6
  1232. else
  1233.   # One or both of the vars are not set, and there is no cached value.
  1234. ac_x_includes=NO ac_x_libraries=NO
  1235. rm -fr conftestdir
  1236. if mkdir conftestdir; then
  1237.   cd conftestdir
  1238.   # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  1239.   cat > Imakefile <<'EOF'
  1240. acfindx:
  1241.     @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
  1242. EOF
  1243.   if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
  1244.     # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  1245.     eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
  1246.     # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
  1247.     for ac_extension in a so sl; do
  1248.       if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
  1249.         test -f $ac_im_libdir/libX11.$ac_extension; then
  1250.         ac_im_usrlibdir=$ac_im_libdir; break
  1251.       fi
  1252.     done
  1253.     # Screen out bogus values from the imake configuration.  They are
  1254.     # bogus both because they are the default anyway, and because
  1255.     # using them would break gcc on systems where it needs fixed includes.
  1256.     case "$ac_im_incroot" in
  1257.     /usr/include) ;;
  1258.     *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes="$ac_im_incroot" ;;
  1259.     esac
  1260.     case "$ac_im_usrlibdir" in
  1261.     /usr/lib | /lib) ;;
  1262.     *) test -d "$ac_im_usrlibdir" && ac_x_libraries="$ac_im_usrlibdir" ;;
  1263.     esac
  1264.   fi
  1265.   cd ..
  1266.   rm -fr conftestdir
  1267. fi
  1268.  
  1269. if test "$ac_x_includes" = NO; then
  1270.   # Guess where to find include files, by looking for this one X11 .h file.
  1271.   test -z "$x_direct_test_include" && x_direct_test_include=X11/Intrinsic.h
  1272.  
  1273.   # First, try using that file with no special directory specified.
  1274. cat > conftest.$ac_ext <<EOF
  1275. #line 1276 "configure"
  1276. #include "confdefs.h"
  1277. #include <$x_direct_test_include>
  1278. EOF
  1279. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1280. { (eval echo configure:1281: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  1281. ac_err=`grep -v '^ *+' conftest.out`
  1282. if test -z "$ac_err"; then
  1283.   rm -rf conftest*
  1284.   # We can compile using X headers with no special include directory.
  1285. ac_x_includes=
  1286. else
  1287.   echo "$ac_err" >&5
  1288.   echo "configure: failed program was:" >&5
  1289.   cat conftest.$ac_ext >&5
  1290.   rm -rf conftest*
  1291.   # Look for the header file in a standard set of common directories.
  1292. # Check X11 before X11Rn because it is often a symlink to the current release.
  1293.   for ac_dir in               \
  1294.     /usr/X11/include          \
  1295.     /usr/X11R6/include        \
  1296.     /usr/X11R5/include        \
  1297.     /usr/X11R4/include        \
  1298.                               \
  1299.     /usr/include/X11          \
  1300.     /usr/include/X11R6        \
  1301.     /usr/include/X11R5        \
  1302.     /usr/include/X11R4        \
  1303.                               \
  1304.     /usr/local/X11/include    \
  1305.     /usr/local/X11R6/include  \
  1306.     /usr/local/X11R5/include  \
  1307.     /usr/local/X11R4/include  \
  1308.                               \
  1309.     /usr/local/include/X11    \
  1310.     /usr/local/include/X11R6  \
  1311.     /usr/local/include/X11R5  \
  1312.     /usr/local/include/X11R4  \
  1313.                               \
  1314.     /usr/X386/include         \
  1315.     /usr/x386/include         \
  1316.     /usr/XFree86/include/X11  \
  1317.                               \
  1318.     /usr/include              \
  1319.     /usr/local/include        \
  1320.     /usr/unsupported/include  \
  1321.     /usr/athena/include       \
  1322.     /usr/local/x11r5/include  \
  1323.     /usr/lpp/Xamples/include  \
  1324.                               \
  1325.     /usr/openwin/include      \
  1326.     /usr/openwin/share/include \
  1327.     ; \
  1328.   do
  1329.     if test -r "$ac_dir/$x_direct_test_include"; then
  1330.       ac_x_includes=$ac_dir
  1331.       break
  1332.     fi
  1333.   done
  1334. fi
  1335. rm -f conftest*
  1336. fi # $ac_x_includes = NO
  1337.  
  1338. if test "$ac_x_libraries" = NO; then
  1339.   # Check for the libraries.
  1340.  
  1341.   test -z "$x_direct_test_library" && x_direct_test_library=Xt
  1342.   test -z "$x_direct_test_function" && x_direct_test_function=XtMalloc
  1343.  
  1344.   # See if we find them without any special options.
  1345.   # Don't add to $LIBS permanently.
  1346.   ac_save_LIBS="$LIBS"
  1347.   LIBS="-l$x_direct_test_library $LIBS"
  1348. cat > conftest.$ac_ext <<EOF
  1349. #line 1350 "configure"
  1350. #include "confdefs.h"
  1351.  
  1352. int main() {
  1353. ${x_direct_test_function}()
  1354. ; return 0; }
  1355. EOF
  1356. if { (eval echo configure:1357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1357.   rm -rf conftest*
  1358.   LIBS="$ac_save_LIBS"
  1359. # We can link X programs with no special library path.
  1360. ac_x_libraries=
  1361. else
  1362.   echo "configure: failed program was:" >&5
  1363.   cat conftest.$ac_ext >&5
  1364.   rm -rf conftest*
  1365.   LIBS="$ac_save_LIBS"
  1366. # First see if replacing the include by lib works.
  1367. # Check X11 before X11Rn because it is often a symlink to the current release.
  1368. for ac_dir in `echo "$ac_x_includes" | sed s/include/lib/` \
  1369.     /usr/X11/lib          \
  1370.     /usr/X11R6/lib        \
  1371.     /usr/X11R5/lib        \
  1372.     /usr/X11R4/lib        \
  1373.                           \
  1374.     /usr/lib/X11          \
  1375.     /usr/lib/X11R6        \
  1376.     /usr/lib/X11R5        \
  1377.     /usr/lib/X11R4        \
  1378.                           \
  1379.     /usr/local/X11/lib    \
  1380.     /usr/local/X11R6/lib  \
  1381.     /usr/local/X11R5/lib  \
  1382.     /usr/local/X11R4/lib  \
  1383.                           \
  1384.     /usr/local/lib/X11    \
  1385.     /usr/local/lib/X11R6  \
  1386.     /usr/local/lib/X11R5  \
  1387.     /usr/local/lib/X11R4  \
  1388.                           \
  1389.     /usr/X386/lib         \
  1390.     /usr/x386/lib         \
  1391.     /usr/XFree86/lib/X11  \
  1392.                           \
  1393.     /usr/lib              \
  1394.     /usr/local/lib        \
  1395.     /usr/unsupported/lib  \
  1396.     /usr/athena/lib       \
  1397.     /usr/local/x11r5/lib  \
  1398.     /usr/lpp/Xamples/lib  \
  1399.     /lib/usr/lib/X11      \
  1400.                           \
  1401.     /usr/openwin/lib      \
  1402.     /usr/openwin/share/lib \
  1403.     ; \
  1404. do
  1405.   for ac_extension in a so sl; do
  1406.     if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then
  1407.       ac_x_libraries=$ac_dir
  1408.       break 2
  1409.     fi
  1410.   done
  1411. done
  1412. fi
  1413. rm -f conftest*
  1414. fi # $ac_x_libraries = NO
  1415.  
  1416. if test "$ac_x_includes" = NO || test "$ac_x_libraries" = NO; then
  1417.   # Didn't find X anywhere.  Cache the known absence of X.
  1418.   ac_cv_have_x="have_x=no"
  1419. else
  1420.   # Record where we found X for the cache.
  1421.   ac_cv_have_x="have_x=yes \
  1422.             ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries"
  1423. fi
  1424. fi
  1425.   fi
  1426.   eval "$ac_cv_have_x"
  1427. fi # $with_x != no
  1428.  
  1429. if test "$have_x" != yes; then
  1430.   echo "$ac_t""$have_x" 1>&6
  1431.   no_x=yes
  1432. else
  1433.   # If each of the values was on the command line, it overrides each guess.
  1434.   test "x$x_includes" = xNONE && x_includes=$ac_x_includes
  1435.   test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
  1436.   # Update the cache value to reflect the command line values.
  1437.   ac_cv_have_x="have_x=yes \
  1438.         ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
  1439.   echo "$ac_t""libraries $x_libraries, headers $x_includes" 1>&6
  1440. fi
  1441.  
  1442. if test "$no_x" = yes; then
  1443.   # Not all programs may use this symbol, but it does not hurt to define it.
  1444.   cat >> confdefs.h <<\EOF
  1445. #define X_DISPLAY_MISSING 1
  1446. EOF
  1447.  
  1448.   X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
  1449. else
  1450.   if test -n "$x_includes"; then
  1451.     X_CFLAGS="$X_CFLAGS -I$x_includes"
  1452.   fi
  1453.  
  1454.   # It would also be nice to do this for all -L options, not just this one.
  1455.   if test -n "$x_libraries"; then
  1456.     X_LIBS="$X_LIBS -L$x_libraries"
  1457.     # For Solaris; some versions of Sun CC require a space after -R and
  1458.     # others require no space.  Words are not sufficient . . . .
  1459.     case "`(uname -sr) 2>/dev/null`" in
  1460.     "SunOS 5"*)
  1461.       echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6
  1462. echo "configure:1463: checking whether -R must be followed by a space" >&5
  1463.       ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries"
  1464.       cat > conftest.$ac_ext <<EOF
  1465. #line 1466 "configure"
  1466. #include "confdefs.h"
  1467.  
  1468. int main() {
  1469.  
  1470. ; return 0; }
  1471. EOF
  1472. if { (eval echo configure:1473: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1473.   rm -rf conftest*
  1474.   ac_R_nospace=yes
  1475. else
  1476.   echo "configure: failed program was:" >&5
  1477.   cat conftest.$ac_ext >&5
  1478.   rm -rf conftest*
  1479.   ac_R_nospace=no
  1480. fi
  1481. rm -f conftest*
  1482.       if test $ac_R_nospace = yes; then
  1483.     echo "$ac_t""no" 1>&6
  1484.     X_LIBS="$X_LIBS -R$x_libraries"
  1485.       else
  1486.     LIBS="$ac_xsave_LIBS -R $x_libraries"
  1487.     cat > conftest.$ac_ext <<EOF
  1488. #line 1489 "configure"
  1489. #include "confdefs.h"
  1490.  
  1491. int main() {
  1492.  
  1493. ; return 0; }
  1494. EOF
  1495. if { (eval echo configure:1496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1496.   rm -rf conftest*
  1497.   ac_R_space=yes
  1498. else
  1499.   echo "configure: failed program was:" >&5
  1500.   cat conftest.$ac_ext >&5
  1501.   rm -rf conftest*
  1502.   ac_R_space=no
  1503. fi
  1504. rm -f conftest*
  1505.     if test $ac_R_space = yes; then
  1506.       echo "$ac_t""yes" 1>&6
  1507.       X_LIBS="$X_LIBS -R $x_libraries"
  1508.     else
  1509.       echo "$ac_t""neither works" 1>&6
  1510.     fi
  1511.       fi
  1512.       LIBS="$ac_xsave_LIBS"
  1513.     esac
  1514.   fi
  1515.  
  1516.   # Check for system-dependent libraries X programs must link with.
  1517.   # Do this before checking for the system-independent R6 libraries
  1518.   # (-lICE), since we may need -lsocket or whatever for X linking.
  1519.  
  1520.   if test "$ISC" = yes; then
  1521.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet"
  1522.   else
  1523.     # Martyn.Johnson@cl.cam.ac.uk says this is needed for Ultrix, if the X
  1524.     # libraries were built with DECnet support.  And karl@cs.umb.edu says
  1525.     # the Alpha needs dnet_stub (dnet does not exist).
  1526.     echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6
  1527. echo "configure:1528: checking for dnet_ntoa in -ldnet" >&5
  1528. ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'`
  1529. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1530.   echo $ac_n "(cached) $ac_c" 1>&6
  1531. else
  1532.   ac_save_LIBS="$LIBS"
  1533. LIBS="-ldnet  $LIBS"
  1534. cat > conftest.$ac_ext <<EOF
  1535. #line 1536 "configure"
  1536. #include "confdefs.h"
  1537. /* Override any gcc2 internal prototype to avoid an error.  */
  1538. /* We use char because int might match the return type of a gcc2
  1539.     builtin and then its argument prototype would still apply.  */
  1540. char dnet_ntoa();
  1541.  
  1542. int main() {
  1543. dnet_ntoa()
  1544. ; return 0; }
  1545. EOF
  1546. if { (eval echo configure:1547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1547.   rm -rf conftest*
  1548.   eval "ac_cv_lib_$ac_lib_var=yes"
  1549. else
  1550.   echo "configure: failed program was:" >&5
  1551.   cat conftest.$ac_ext >&5
  1552.   rm -rf conftest*
  1553.   eval "ac_cv_lib_$ac_lib_var=no"
  1554. fi
  1555. rm -f conftest*
  1556. LIBS="$ac_save_LIBS"
  1557.  
  1558. fi
  1559. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1560.   echo "$ac_t""yes" 1>&6
  1561.   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
  1562. else
  1563.   echo "$ac_t""no" 1>&6
  1564. fi
  1565.  
  1566.     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
  1567.       echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6
  1568. echo "configure:1569: checking for dnet_ntoa in -ldnet_stub" >&5
  1569. ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'`
  1570. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1571.   echo $ac_n "(cached) $ac_c" 1>&6
  1572. else
  1573.   ac_save_LIBS="$LIBS"
  1574. LIBS="-ldnet_stub  $LIBS"
  1575. cat > conftest.$ac_ext <<EOF
  1576. #line 1577 "configure"
  1577. #include "confdefs.h"
  1578. /* Override any gcc2 internal prototype to avoid an error.  */
  1579. /* We use char because int might match the return type of a gcc2
  1580.     builtin and then its argument prototype would still apply.  */
  1581. char dnet_ntoa();
  1582.  
  1583. int main() {
  1584. dnet_ntoa()
  1585. ; return 0; }
  1586. EOF
  1587. if { (eval echo configure:1588: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1588.   rm -rf conftest*
  1589.   eval "ac_cv_lib_$ac_lib_var=yes"
  1590. else
  1591.   echo "configure: failed program was:" >&5
  1592.   cat conftest.$ac_ext >&5
  1593.   rm -rf conftest*
  1594.   eval "ac_cv_lib_$ac_lib_var=no"
  1595. fi
  1596. rm -f conftest*
  1597. LIBS="$ac_save_LIBS"
  1598.  
  1599. fi
  1600. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1601.   echo "$ac_t""yes" 1>&6
  1602.   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
  1603. else
  1604.   echo "$ac_t""no" 1>&6
  1605. fi
  1606.  
  1607.     fi
  1608.  
  1609.     # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
  1610.     # to get the SysV transport functions.
  1611.     # chad@anasazi.com says the Pyramis MIS-ES running DC/OSx (SVR4)
  1612.     # needs -lnsl.
  1613.     # The nsl library prevents programs from opening the X display
  1614.     # on Irix 5.2, according to dickey@clark.net.
  1615.     echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6
  1616. echo "configure:1617: checking for gethostbyname" >&5
  1617. if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then
  1618.   echo $ac_n "(cached) $ac_c" 1>&6
  1619. else
  1620.   cat > conftest.$ac_ext <<EOF
  1621. #line 1622 "configure"
  1622. #include "confdefs.h"
  1623. /* System header to define __stub macros and hopefully few prototypes,
  1624.     which can conflict with char gethostbyname(); below.  */
  1625. #include <assert.h>
  1626. /* Override any gcc2 internal prototype to avoid an error.  */
  1627. /* We use char because int might match the return type of a gcc2
  1628.     builtin and then its argument prototype would still apply.  */
  1629. char gethostbyname();
  1630.  
  1631. int main() {
  1632.  
  1633. /* The GNU C library defines this for functions which it implements
  1634.     to always fail with ENOSYS.  Some functions are actually named
  1635.     something starting with __ and the normal name is an alias.  */
  1636. #if defined (__stub_gethostbyname) || defined (__stub___gethostbyname)
  1637. choke me
  1638. #else
  1639. gethostbyname();
  1640. #endif
  1641.  
  1642. ; return 0; }
  1643. EOF
  1644. if { (eval echo configure:1645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1645.   rm -rf conftest*
  1646.   eval "ac_cv_func_gethostbyname=yes"
  1647. else
  1648.   echo "configure: failed program was:" >&5
  1649.   cat conftest.$ac_ext >&5
  1650.   rm -rf conftest*
  1651.   eval "ac_cv_func_gethostbyname=no"
  1652. fi
  1653. rm -f conftest*
  1654. fi
  1655.  
  1656. if eval "test \"`echo '$ac_cv_func_'gethostbyname`\" = yes"; then
  1657.   echo "$ac_t""yes" 1>&6
  1658.   :
  1659. else
  1660.   echo "$ac_t""no" 1>&6
  1661. fi
  1662.  
  1663.     if test $ac_cv_func_gethostbyname = no; then
  1664.       echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
  1665. echo "configure:1666: checking for gethostbyname in -lnsl" >&5
  1666. ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
  1667. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1668.   echo $ac_n "(cached) $ac_c" 1>&6
  1669. else
  1670.   ac_save_LIBS="$LIBS"
  1671. LIBS="-lnsl  $LIBS"
  1672. cat > conftest.$ac_ext <<EOF
  1673. #line 1674 "configure"
  1674. #include "confdefs.h"
  1675. /* Override any gcc2 internal prototype to avoid an error.  */
  1676. /* We use char because int might match the return type of a gcc2
  1677.     builtin and then its argument prototype would still apply.  */
  1678. char gethostbyname();
  1679.  
  1680. int main() {
  1681. gethostbyname()
  1682. ; return 0; }
  1683. EOF
  1684. if { (eval echo configure:1685: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1685.   rm -rf conftest*
  1686.   eval "ac_cv_lib_$ac_lib_var=yes"
  1687. else
  1688.   echo "configure: failed program was:" >&5
  1689.   cat conftest.$ac_ext >&5
  1690.   rm -rf conftest*
  1691.   eval "ac_cv_lib_$ac_lib_var=no"
  1692. fi
  1693. rm -f conftest*
  1694. LIBS="$ac_save_LIBS"
  1695.  
  1696. fi
  1697. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1698.   echo "$ac_t""yes" 1>&6
  1699.   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
  1700. else
  1701.   echo "$ac_t""no" 1>&6
  1702. fi
  1703.  
  1704.     fi
  1705.  
  1706.     # lieder@skyler.mavd.honeywell.com says without -lsocket,
  1707.     # socket/setsockopt and other routines are undefined under SCO ODT
  1708.     # 2.0.  But -lsocket is broken on IRIX 5.2 (and is not necessary
  1709.     # on later versions), says simon@lia.di.epfl.ch: it contains
  1710.     # gethostby* variants that don't use the nameserver (or something).
  1711.     # -lsocket must be given before -lnsl if both are needed.
  1712.     # We assume that if connect needs -lnsl, so does gethostbyname.
  1713.     echo $ac_n "checking for connect""... $ac_c" 1>&6
  1714. echo "configure:1715: checking for connect" >&5
  1715. if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
  1716.   echo $ac_n "(cached) $ac_c" 1>&6
  1717. else
  1718.   cat > conftest.$ac_ext <<EOF
  1719. #line 1720 "configure"
  1720. #include "confdefs.h"
  1721. /* System header to define __stub macros and hopefully few prototypes,
  1722.     which can conflict with char connect(); below.  */
  1723. #include <assert.h>
  1724. /* Override any gcc2 internal prototype to avoid an error.  */
  1725. /* We use char because int might match the return type of a gcc2
  1726.     builtin and then its argument prototype would still apply.  */
  1727. char connect();
  1728.  
  1729. int main() {
  1730.  
  1731. /* The GNU C library defines this for functions which it implements
  1732.     to always fail with ENOSYS.  Some functions are actually named
  1733.     something starting with __ and the normal name is an alias.  */
  1734. #if defined (__stub_connect) || defined (__stub___connect)
  1735. choke me
  1736. #else
  1737. connect();
  1738. #endif
  1739.  
  1740. ; return 0; }
  1741. EOF
  1742. if { (eval echo configure:1743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1743.   rm -rf conftest*
  1744.   eval "ac_cv_func_connect=yes"
  1745. else
  1746.   echo "configure: failed program was:" >&5
  1747.   cat conftest.$ac_ext >&5
  1748.   rm -rf conftest*
  1749.   eval "ac_cv_func_connect=no"
  1750. fi
  1751. rm -f conftest*
  1752. fi
  1753.  
  1754. if eval "test \"`echo '$ac_cv_func_'connect`\" = yes"; then
  1755.   echo "$ac_t""yes" 1>&6
  1756.   :
  1757. else
  1758.   echo "$ac_t""no" 1>&6
  1759. fi
  1760.  
  1761.     if test $ac_cv_func_connect = no; then
  1762.       echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6
  1763. echo "configure:1764: checking for connect in -lsocket" >&5
  1764. ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'`
  1765. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1766.   echo $ac_n "(cached) $ac_c" 1>&6
  1767. else
  1768.   ac_save_LIBS="$LIBS"
  1769. LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
  1770. cat > conftest.$ac_ext <<EOF
  1771. #line 1772 "configure"
  1772. #include "confdefs.h"
  1773. /* Override any gcc2 internal prototype to avoid an error.  */
  1774. /* We use char because int might match the return type of a gcc2
  1775.     builtin and then its argument prototype would still apply.  */
  1776. char connect();
  1777.  
  1778. int main() {
  1779. connect()
  1780. ; return 0; }
  1781. EOF
  1782. if { (eval echo configure:1783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1783.   rm -rf conftest*
  1784.   eval "ac_cv_lib_$ac_lib_var=yes"
  1785. else
  1786.   echo "configure: failed program was:" >&5
  1787.   cat conftest.$ac_ext >&5
  1788.   rm -rf conftest*
  1789.   eval "ac_cv_lib_$ac_lib_var=no"
  1790. fi
  1791. rm -f conftest*
  1792. LIBS="$ac_save_LIBS"
  1793.  
  1794. fi
  1795. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1796.   echo "$ac_t""yes" 1>&6
  1797.   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
  1798. else
  1799.   echo "$ac_t""no" 1>&6
  1800. fi
  1801.  
  1802.     fi
  1803.  
  1804.     # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
  1805.     echo $ac_n "checking for remove""... $ac_c" 1>&6
  1806. echo "configure:1807: checking for remove" >&5
  1807. if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then
  1808.   echo $ac_n "(cached) $ac_c" 1>&6
  1809. else
  1810.   cat > conftest.$ac_ext <<EOF
  1811. #line 1812 "configure"
  1812. #include "confdefs.h"
  1813. /* System header to define __stub macros and hopefully few prototypes,
  1814.     which can conflict with char remove(); below.  */
  1815. #include <assert.h>
  1816. /* Override any gcc2 internal prototype to avoid an error.  */
  1817. /* We use char because int might match the return type of a gcc2
  1818.     builtin and then its argument prototype would still apply.  */
  1819. char remove();
  1820.  
  1821. int main() {
  1822.  
  1823. /* The GNU C library defines this for functions which it implements
  1824.     to always fail with ENOSYS.  Some functions are actually named
  1825.     something starting with __ and the normal name is an alias.  */
  1826. #if defined (__stub_remove) || defined (__stub___remove)
  1827. choke me
  1828. #else
  1829. remove();
  1830. #endif
  1831.  
  1832. ; return 0; }
  1833. EOF
  1834. if { (eval echo configure:1835: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1835.   rm -rf conftest*
  1836.   eval "ac_cv_func_remove=yes"
  1837. else
  1838.   echo "configure: failed program was:" >&5
  1839.   cat conftest.$ac_ext >&5
  1840.   rm -rf conftest*
  1841.   eval "ac_cv_func_remove=no"
  1842. fi
  1843. rm -f conftest*
  1844. fi
  1845.  
  1846. if eval "test \"`echo '$ac_cv_func_'remove`\" = yes"; then
  1847.   echo "$ac_t""yes" 1>&6
  1848.   :
  1849. else
  1850.   echo "$ac_t""no" 1>&6
  1851. fi
  1852.  
  1853.     if test $ac_cv_func_remove = no; then
  1854.       echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6
  1855. echo "configure:1856: checking for remove in -lposix" >&5
  1856. ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'`
  1857. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1858.   echo $ac_n "(cached) $ac_c" 1>&6
  1859. else
  1860.   ac_save_LIBS="$LIBS"
  1861. LIBS="-lposix  $LIBS"
  1862. cat > conftest.$ac_ext <<EOF
  1863. #line 1864 "configure"
  1864. #include "confdefs.h"
  1865. /* Override any gcc2 internal prototype to avoid an error.  */
  1866. /* We use char because int might match the return type of a gcc2
  1867.     builtin and then its argument prototype would still apply.  */
  1868. char remove();
  1869.  
  1870. int main() {
  1871. remove()
  1872. ; return 0; }
  1873. EOF
  1874. if { (eval echo configure:1875: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1875.   rm -rf conftest*
  1876.   eval "ac_cv_lib_$ac_lib_var=yes"
  1877. else
  1878.   echo "configure: failed program was:" >&5
  1879.   cat conftest.$ac_ext >&5
  1880.   rm -rf conftest*
  1881.   eval "ac_cv_lib_$ac_lib_var=no"
  1882. fi
  1883. rm -f conftest*
  1884. LIBS="$ac_save_LIBS"
  1885.  
  1886. fi
  1887. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1888.   echo "$ac_t""yes" 1>&6
  1889.   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
  1890. else
  1891.   echo "$ac_t""no" 1>&6
  1892. fi
  1893.  
  1894.     fi
  1895.  
  1896.     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
  1897.     echo $ac_n "checking for shmat""... $ac_c" 1>&6
  1898. echo "configure:1899: checking for shmat" >&5
  1899. if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then
  1900.   echo $ac_n "(cached) $ac_c" 1>&6
  1901. else
  1902.   cat > conftest.$ac_ext <<EOF
  1903. #line 1904 "configure"
  1904. #include "confdefs.h"
  1905. /* System header to define __stub macros and hopefully few prototypes,
  1906.     which can conflict with char shmat(); below.  */
  1907. #include <assert.h>
  1908. /* Override any gcc2 internal prototype to avoid an error.  */
  1909. /* We use char because int might match the return type of a gcc2
  1910.     builtin and then its argument prototype would still apply.  */
  1911. char shmat();
  1912.  
  1913. int main() {
  1914.  
  1915. /* The GNU C library defines this for functions which it implements
  1916.     to always fail with ENOSYS.  Some functions are actually named
  1917.     something starting with __ and the normal name is an alias.  */
  1918. #if defined (__stub_shmat) || defined (__stub___shmat)
  1919. choke me
  1920. #else
  1921. shmat();
  1922. #endif
  1923.  
  1924. ; return 0; }
  1925. EOF
  1926. if { (eval echo configure:1927: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1927.   rm -rf conftest*
  1928.   eval "ac_cv_func_shmat=yes"
  1929. else
  1930.   echo "configure: failed program was:" >&5
  1931.   cat conftest.$ac_ext >&5
  1932.   rm -rf conftest*
  1933.   eval "ac_cv_func_shmat=no"
  1934. fi
  1935. rm -f conftest*
  1936. fi
  1937.  
  1938. if eval "test \"`echo '$ac_cv_func_'shmat`\" = yes"; then
  1939.   echo "$ac_t""yes" 1>&6
  1940.   :
  1941. else
  1942.   echo "$ac_t""no" 1>&6
  1943. fi
  1944.  
  1945.     if test $ac_cv_func_shmat = no; then
  1946.       echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6
  1947. echo "configure:1948: checking for shmat in -lipc" >&5
  1948. ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'`
  1949. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  1950.   echo $ac_n "(cached) $ac_c" 1>&6
  1951. else
  1952.   ac_save_LIBS="$LIBS"
  1953. LIBS="-lipc  $LIBS"
  1954. cat > conftest.$ac_ext <<EOF
  1955. #line 1956 "configure"
  1956. #include "confdefs.h"
  1957. /* Override any gcc2 internal prototype to avoid an error.  */
  1958. /* We use char because int might match the return type of a gcc2
  1959.     builtin and then its argument prototype would still apply.  */
  1960. char shmat();
  1961.  
  1962. int main() {
  1963. shmat()
  1964. ; return 0; }
  1965. EOF
  1966. if { (eval echo configure:1967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1967.   rm -rf conftest*
  1968.   eval "ac_cv_lib_$ac_lib_var=yes"
  1969. else
  1970.   echo "configure: failed program was:" >&5
  1971.   cat conftest.$ac_ext >&5
  1972.   rm -rf conftest*
  1973.   eval "ac_cv_lib_$ac_lib_var=no"
  1974. fi
  1975. rm -f conftest*
  1976. LIBS="$ac_save_LIBS"
  1977.  
  1978. fi
  1979. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  1980.   echo "$ac_t""yes" 1>&6
  1981.   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  1982. else
  1983.   echo "$ac_t""no" 1>&6
  1984. fi
  1985.  
  1986.     fi
  1987.   fi
  1988.  
  1989.   # Check for libraries that X11R6 Xt/Xaw programs need.
  1990.   ac_save_LDFLAGS="$LDFLAGS"
  1991.   test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries"
  1992.   # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
  1993.   # check for ICE first), but we must link in the order -lSM -lICE or
  1994.   # we get undefined symbols.  So assume we have SM if we have ICE.
  1995.   # These have to be linked with before -lX11, unlike the other
  1996.   # libraries we check for below, so use a different variable.
  1997.   #  --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
  1998.   echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6
  1999. echo "configure:2000: checking for IceConnectionNumber in -lICE" >&5
  2000. ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'`
  2001. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  2002.   echo $ac_n "(cached) $ac_c" 1>&6
  2003. else
  2004.   ac_save_LIBS="$LIBS"
  2005. LIBS="-lICE  $LIBS"
  2006. cat > conftest.$ac_ext <<EOF
  2007. #line 2008 "configure"
  2008. #include "confdefs.h"
  2009. /* Override any gcc2 internal prototype to avoid an error.  */
  2010. /* We use char because int might match the return type of a gcc2
  2011.     builtin and then its argument prototype would still apply.  */
  2012. char IceConnectionNumber();
  2013.  
  2014. int main() {
  2015. IceConnectionNumber()
  2016. ; return 0; }
  2017. EOF
  2018. if { (eval echo configure:2019: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2019.   rm -rf conftest*
  2020.   eval "ac_cv_lib_$ac_lib_var=yes"
  2021. else
  2022.   echo "configure: failed program was:" >&5
  2023.   cat conftest.$ac_ext >&5
  2024.   rm -rf conftest*
  2025.   eval "ac_cv_lib_$ac_lib_var=no"
  2026. fi
  2027. rm -f conftest*
  2028. LIBS="$ac_save_LIBS"
  2029.  
  2030. fi
  2031. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  2032.   echo "$ac_t""yes" 1>&6
  2033.   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
  2034. else
  2035.   echo "$ac_t""no" 1>&6
  2036. fi
  2037.  
  2038.   LDFLAGS="$ac_save_LDFLAGS"
  2039.  
  2040. fi
  2041.  
  2042. ac_header_dirent=no
  2043. for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h
  2044. do
  2045. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  2046. echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6
  2047. echo "configure:2048: checking for $ac_hdr that defines DIR" >&5
  2048. if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
  2049.   echo $ac_n "(cached) $ac_c" 1>&6
  2050. else
  2051.   cat > conftest.$ac_ext <<EOF
  2052. #line 2053 "configure"
  2053. #include "confdefs.h"
  2054. #include <sys/types.h>
  2055. #include <$ac_hdr>
  2056. int main() {
  2057. DIR *dirp = 0;
  2058. ; return 0; }
  2059. EOF
  2060. if { (eval echo configure:2061: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2061.   rm -rf conftest*
  2062.   eval "ac_cv_header_dirent_$ac_safe=yes"
  2063. else
  2064.   echo "configure: failed program was:" >&5
  2065.   cat conftest.$ac_ext >&5
  2066.   rm -rf conftest*
  2067.   eval "ac_cv_header_dirent_$ac_safe=no"
  2068. fi
  2069. rm -f conftest*
  2070. fi
  2071. if eval "test \"`echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
  2072.   echo "$ac_t""yes" 1>&6
  2073.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  2074.   cat >> confdefs.h <<EOF
  2075. #define $ac_tr_hdr 1
  2076. EOF
  2077.  ac_header_dirent=$ac_hdr; break
  2078. else
  2079.   echo "$ac_t""no" 1>&6
  2080. fi
  2081. done
  2082. # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
  2083. if test $ac_header_dirent = dirent.h; then
  2084. echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6
  2085. echo "configure:2086: checking for opendir in -ldir" >&5
  2086. ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'`
  2087. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  2088.   echo $ac_n "(cached) $ac_c" 1>&6
  2089. else
  2090.   ac_save_LIBS="$LIBS"
  2091. LIBS="-ldir  $LIBS"
  2092. cat > conftest.$ac_ext <<EOF
  2093. #line 2094 "configure"
  2094. #include "confdefs.h"
  2095. /* Override any gcc2 internal prototype to avoid an error.  */
  2096. /* We use char because int might match the return type of a gcc2
  2097.     builtin and then its argument prototype would still apply.  */
  2098. char opendir();
  2099.  
  2100. int main() {
  2101. opendir()
  2102. ; return 0; }
  2103. EOF
  2104. if { (eval echo configure:2105: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2105.   rm -rf conftest*
  2106.   eval "ac_cv_lib_$ac_lib_var=yes"
  2107. else
  2108.   echo "configure: failed program was:" >&5
  2109.   cat conftest.$ac_ext >&5
  2110.   rm -rf conftest*
  2111.   eval "ac_cv_lib_$ac_lib_var=no"
  2112. fi
  2113. rm -f conftest*
  2114. LIBS="$ac_save_LIBS"
  2115.  
  2116. fi
  2117. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  2118.   echo "$ac_t""yes" 1>&6
  2119.   LIBS="$LIBS -ldir"
  2120. else
  2121.   echo "$ac_t""no" 1>&6
  2122. fi
  2123.  
  2124. else
  2125. echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6
  2126. echo "configure:2127: checking for opendir in -lx" >&5
  2127. ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'`
  2128. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  2129.   echo $ac_n "(cached) $ac_c" 1>&6
  2130. else
  2131.   ac_save_LIBS="$LIBS"
  2132. LIBS="-lx  $LIBS"
  2133. cat > conftest.$ac_ext <<EOF
  2134. #line 2135 "configure"
  2135. #include "confdefs.h"
  2136. /* Override any gcc2 internal prototype to avoid an error.  */
  2137. /* We use char because int might match the return type of a gcc2
  2138.     builtin and then its argument prototype would still apply.  */
  2139. char opendir();
  2140.  
  2141. int main() {
  2142. opendir()
  2143. ; return 0; }
  2144. EOF
  2145. if { (eval echo configure:2146: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2146.   rm -rf conftest*
  2147.   eval "ac_cv_lib_$ac_lib_var=yes"
  2148. else
  2149.   echo "configure: failed program was:" >&5
  2150.   cat conftest.$ac_ext >&5
  2151.   rm -rf conftest*
  2152.   eval "ac_cv_lib_$ac_lib_var=no"
  2153. fi
  2154. rm -f conftest*
  2155. LIBS="$ac_save_LIBS"
  2156.  
  2157. fi
  2158. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  2159.   echo "$ac_t""yes" 1>&6
  2160.   LIBS="$LIBS -lx"
  2161. else
  2162.   echo "$ac_t""no" 1>&6
  2163. fi
  2164.  
  2165. fi
  2166.  
  2167.  
  2168. echo $ac_n "checking fd_set and sys/select.h or sys/bsdtypes.h""... $ac_c" 1>&6
  2169. echo "configure:2170: checking fd_set and sys/select.h or sys/bsdtypes.h" >&5
  2170. cat > conftest.$ac_ext <<EOF
  2171. #line 2172 "configure"
  2172. #include "confdefs.h"
  2173. #include <sys/types.h>
  2174. int main() {
  2175. fd_set fds;
  2176. ; return 0; }
  2177. EOF
  2178. if { (eval echo configure:2179: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2179.   rm -rf conftest*
  2180.   xpdf_ok=yes
  2181. else
  2182.   echo "configure: failed program was:" >&5
  2183.   cat conftest.$ac_ext >&5
  2184.   rm -rf conftest*
  2185.   xpdf_ok=no
  2186. fi
  2187. rm -f conftest*
  2188. if test $xpdf_ok = yes; then
  2189.   echo "$ac_t""not needed" 1>&6
  2190. else
  2191.   cat > conftest.$ac_ext <<EOF
  2192. #line 2193 "configure"
  2193. #include "confdefs.h"
  2194. #include <sys/types.h>
  2195. #include <sys/select.h>
  2196. int main() {
  2197. fd_set fds;
  2198. ; return 0; }
  2199. EOF
  2200. if { (eval echo configure:2201: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2201.   rm -rf conftest*
  2202.   xpdf_ok=yes
  2203. else
  2204.   echo "configure: failed program was:" >&5
  2205.   cat conftest.$ac_ext >&5
  2206.   rm -rf conftest*
  2207.   xpdf_ok=no
  2208. fi
  2209. rm -f conftest*
  2210.   if test $xpdf_ok = yes; then
  2211.     cat >> confdefs.h <<\EOF
  2212. #define HAVE_SYS_SELECT_H 1
  2213. EOF
  2214.  
  2215.     echo "$ac_t""need sys/select.h" 1>&6
  2216.   else
  2217.     cat > conftest.$ac_ext <<EOF
  2218. #line 2219 "configure"
  2219. #include "confdefs.h"
  2220. #include <sys/types.h>
  2221. #include <sys/bsdtypes.h>
  2222. int main() {
  2223. fd_set fds;
  2224. ; return 0; }
  2225. EOF
  2226. if { (eval echo configure:2227: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2227.   rm -rf conftest*
  2228.   xpdf_ok=yes
  2229. else
  2230.   echo "configure: failed program was:" >&5
  2231.   cat conftest.$ac_ext >&5
  2232.   rm -rf conftest*
  2233.   xpdf_ok=no
  2234. fi
  2235. rm -f conftest*
  2236.     if test $xpdf_ok = yes; then
  2237.       cat >> confdefs.h <<\EOF
  2238. #define HAVE_SYS_BSDTYPES_H 1
  2239. EOF
  2240.  
  2241.       echo "$ac_t""need sys/bsdtypes.h" 1>&6
  2242.     else
  2243.       echo "$ac_t""problem" 1>&6
  2244.     fi
  2245.   fi
  2246. fi
  2247.  
  2248. echo $ac_n "checking FD_ZERO and strings.h or bstring.h""... $ac_c" 1>&6
  2249. echo "configure:2250: checking FD_ZERO and strings.h or bstring.h" >&5
  2250. cat > conftest.$ac_ext <<EOF
  2251. #line 2252 "configure"
  2252. #include "confdefs.h"
  2253. #include <sys/types.h>
  2254. #ifdef HAVE_SYS_SELECT_H
  2255. #include <sys/select.h>
  2256. #endif
  2257. int main() {
  2258. fd_set fds; FD_ZERO(&fds);
  2259. ; return 0; }
  2260. EOF
  2261. if { (eval echo configure:2262: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2262.   rm -rf conftest*
  2263.   xpdf_ok=yes
  2264. else
  2265.   echo "configure: failed program was:" >&5
  2266.   cat conftest.$ac_ext >&5
  2267.   rm -rf conftest*
  2268.   xpdf_ok=no
  2269. fi
  2270. rm -f conftest*
  2271. if test $xpdf_ok = yes; then
  2272.   echo "$ac_t""not needed" 1>&6
  2273. else
  2274.   cat > conftest.$ac_ext <<EOF
  2275. #line 2276 "configure"
  2276. #include "confdefs.h"
  2277. #include <sys/types.h>
  2278. #include <strings.h>
  2279. #ifdef HAVE_SYS_SELECT_H
  2280. #include <sys/select.h>
  2281. #endif
  2282. int main() {
  2283. fd_set fds; FD_ZERO(&fds);
  2284. ; return 0; }
  2285. EOF
  2286. if { (eval echo configure:2287: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2287.   rm -rf conftest*
  2288.   xpdf_ok=yes
  2289. else
  2290.   echo "configure: failed program was:" >&5
  2291.   cat conftest.$ac_ext >&5
  2292.   rm -rf conftest*
  2293.   xpdf_ok=no
  2294. fi
  2295. rm -f conftest*
  2296.   if test $xpdf_ok = yes; then
  2297.     cat >> confdefs.h <<\EOF
  2298. #define HAVE_STRINGS_H 1
  2299. EOF
  2300.  
  2301.     echo "$ac_t""need strings.h" 1>&6
  2302.   else
  2303.     cat > conftest.$ac_ext <<EOF
  2304. #line 2305 "configure"
  2305. #include "confdefs.h"
  2306. #include <sys/types.h>
  2307. #include <bstring.h>
  2308. #ifdef HAVE_SYS_SELECT_H
  2309. #include <sys/select.h>
  2310. #endif
  2311. int main() {
  2312. fd_set fds; FD_ZERO(&fds);
  2313. ; return 0; }
  2314. EOF
  2315. if { (eval echo configure:2316: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2316.   rm -rf conftest*
  2317.   xpdf_ok=yes
  2318. else
  2319.   echo "configure: failed program was:" >&5
  2320.   cat conftest.$ac_ext >&5
  2321.   rm -rf conftest*
  2322.   xpdf_ok=no
  2323. fi
  2324. rm -f conftest*
  2325.     if test $xpdf_ok = yes; then
  2326.       cat >> confdefs.h <<\EOF
  2327. #define HAVE_BSTRING_H 1
  2328. EOF
  2329.  
  2330.       echo "$ac_t""need bstring.h" 1>&6
  2331.     else
  2332.       echo "$ac_t""problem" 1>&6
  2333.     fi
  2334.   fi
  2335. fi
  2336.  
  2337. for ac_func in rewinddir
  2338. do
  2339. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  2340. echo "configure:2341: checking for $ac_func" >&5
  2341. if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  2342.   echo $ac_n "(cached) $ac_c" 1>&6
  2343. else
  2344.   cat > conftest.$ac_ext <<EOF
  2345. #line 2346 "configure"
  2346. #include "confdefs.h"
  2347. /* System header to define __stub macros and hopefully few prototypes,
  2348.     which can conflict with char $ac_func(); below.  */
  2349. #include <assert.h>
  2350. /* Override any gcc2 internal prototype to avoid an error.  */
  2351. /* We use char because int might match the return type of a gcc2
  2352.     builtin and then its argument prototype would still apply.  */
  2353. char $ac_func();
  2354.  
  2355. int main() {
  2356.  
  2357. /* The GNU C library defines this for functions which it implements
  2358.     to always fail with ENOSYS.  Some functions are actually named
  2359.     something starting with __ and the normal name is an alias.  */
  2360. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  2361. choke me
  2362. #else
  2363. $ac_func();
  2364. #endif
  2365.  
  2366. ; return 0; }
  2367. EOF
  2368. if { (eval echo configure:2369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2369.   rm -rf conftest*
  2370.   eval "ac_cv_func_$ac_func=yes"
  2371. else
  2372.   echo "configure: failed program was:" >&5
  2373.   cat conftest.$ac_ext >&5
  2374.   rm -rf conftest*
  2375.   eval "ac_cv_func_$ac_func=no"
  2376. fi
  2377. rm -f conftest*
  2378. fi
  2379.  
  2380. if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  2381.   echo "$ac_t""yes" 1>&6
  2382.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  2383.   cat >> confdefs.h <<EOF
  2384. #define $ac_tr_func 1
  2385. EOF
  2386.  
  2387. else
  2388.   echo "$ac_t""no" 1>&6
  2389. fi
  2390. done
  2391.  
  2392. if test $ac_cv_func_rewinddir = no; then
  2393.   echo $ac_n "checking for rewinddir in -lcposix""... $ac_c" 1>&6
  2394. echo "configure:2395: checking for rewinddir in -lcposix" >&5
  2395. ac_lib_var=`echo cposix'_'rewinddir | sed 'y%./+-%__p_%'`
  2396. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  2397.   echo $ac_n "(cached) $ac_c" 1>&6
  2398. else
  2399.   ac_save_LIBS="$LIBS"
  2400. LIBS="-lcposix  $LIBS"
  2401. cat > conftest.$ac_ext <<EOF
  2402. #line 2403 "configure"
  2403. #include "confdefs.h"
  2404. /* Override any gcc2 internal prototype to avoid an error.  */
  2405. /* We use char because int might match the return type of a gcc2
  2406.     builtin and then its argument prototype would still apply.  */
  2407. char rewinddir();
  2408.  
  2409. int main() {
  2410. rewinddir()
  2411. ; return 0; }
  2412. EOF
  2413. if { (eval echo configure:2414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2414.   rm -rf conftest*
  2415.   eval "ac_cv_lib_$ac_lib_var=yes"
  2416. else
  2417.   echo "configure: failed program was:" >&5
  2418.   cat conftest.$ac_ext >&5
  2419.   rm -rf conftest*
  2420.   eval "ac_cv_lib_$ac_lib_var=no"
  2421. fi
  2422. rm -f conftest*
  2423. LIBS="$ac_save_LIBS"
  2424.  
  2425. fi
  2426. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  2427.   echo "$ac_t""yes" 1>&6
  2428.     ac_tr_lib=HAVE_LIB`echo cposix | sed -e 's/[^a-zA-Z0-9_]/_/g' \
  2429.     -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  2430.   cat >> confdefs.h <<EOF
  2431. #define $ac_tr_lib 1
  2432. EOF
  2433.  
  2434.   LIBS="-lcposix $LIBS"
  2435.  
  2436. else
  2437.   echo "$ac_t""no" 1>&6
  2438. fi
  2439.  
  2440. fi
  2441.  
  2442. for ac_func in popen
  2443. do
  2444. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  2445. echo "configure:2446: checking for $ac_func" >&5
  2446. if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  2447.   echo $ac_n "(cached) $ac_c" 1>&6
  2448. else
  2449.   cat > conftest.$ac_ext <<EOF
  2450. #line 2451 "configure"
  2451. #include "confdefs.h"
  2452. /* System header to define __stub macros and hopefully few prototypes,
  2453.     which can conflict with char $ac_func(); below.  */
  2454. #include <assert.h>
  2455. /* Override any gcc2 internal prototype to avoid an error.  */
  2456. /* We use char because int might match the return type of a gcc2
  2457.     builtin and then its argument prototype would still apply.  */
  2458. char $ac_func();
  2459.  
  2460. int main() {
  2461.  
  2462. /* The GNU C library defines this for functions which it implements
  2463.     to always fail with ENOSYS.  Some functions are actually named
  2464.     something starting with __ and the normal name is an alias.  */
  2465. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  2466. choke me
  2467. #else
  2468. $ac_func();
  2469. #endif
  2470.  
  2471. ; return 0; }
  2472. EOF
  2473. if { (eval echo configure:2474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2474.   rm -rf conftest*
  2475.   eval "ac_cv_func_$ac_func=yes"
  2476. else
  2477.   echo "configure: failed program was:" >&5
  2478.   cat conftest.$ac_ext >&5
  2479.   rm -rf conftest*
  2480.   eval "ac_cv_func_$ac_func=no"
  2481. fi
  2482. rm -f conftest*
  2483. fi
  2484.  
  2485. if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  2486.   echo "$ac_t""yes" 1>&6
  2487.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  2488.   cat >> confdefs.h <<EOF
  2489. #define $ac_tr_func 1
  2490. EOF
  2491.  
  2492. else
  2493.   echo "$ac_t""no" 1>&6
  2494. fi
  2495. done
  2496.  
  2497.  
  2498. ac_ext=C
  2499. # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  2500. ac_cpp='$CXXCPP $CPPFLAGS'
  2501. ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  2502. ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  2503. cross_compiling=$ac_cv_prog_cxx_cross
  2504.  
  2505. echo $ac_n "checking whether select takes fd_set arguments""... $ac_c" 1>&6
  2506. echo "configure:2507: checking whether select takes fd_set arguments" >&5
  2507. if eval "test \"`echo '$''{'xpdf_cv_func_select_arg'+set}'`\" = set"; then
  2508.   echo $ac_n "(cached) $ac_c" 1>&6
  2509. else
  2510.   cat > conftest.$ac_ext <<EOF
  2511. #line 2512 "configure"
  2512. #include "confdefs.h"
  2513. #include <sys/types.h>
  2514. #include <sys/time.h>
  2515. #ifdef HAVE_SYS_SELECT_H
  2516. #include <sys/select.h>
  2517. #endif
  2518. int main() {
  2519. fd_set fds;
  2520. select(1, &fds, &fds, &fds, 0);
  2521. ; return 0; }
  2522. EOF
  2523. if { (eval echo configure:2524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  2524.   rm -rf conftest*
  2525.   xpdf_cv_func_select_arg=yes
  2526. else
  2527.   echo "configure: failed program was:" >&5
  2528.   cat conftest.$ac_ext >&5
  2529.   rm -rf conftest*
  2530.   xpdf_cv_func_select_arg=no
  2531. fi
  2532. rm -f conftest*
  2533. fi
  2534.  
  2535. echo "$ac_t""$xpdf_cv_func_select_arg" 1>&6
  2536. if test "$xpdf_cv_func_select_arg" != yes; then
  2537.   cat >> confdefs.h <<\EOF
  2538. #define SELECT_TAKES_INT 1
  2539. EOF
  2540.  
  2541. fi
  2542. ac_ext=c
  2543. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  2544. ac_cpp='$CPP $CPPFLAGS'
  2545. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  2546. ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  2547. cross_compiling=$ac_cv_prog_cc_cross
  2548.  
  2549.  
  2550.  
  2551. smr_lib=Xpm
  2552. smr_header=X11/xpm.h
  2553.  
  2554.  
  2555. smr_lib=Xpm
  2556.  
  2557. # Check whether --with-Xpm-library or --without-Xpm-library was given.
  2558. if test "${with_Xpm_library+set}" = set; then
  2559.   withval="$with_Xpm_library"
  2560.   
  2561.     if test "$withval" = yes; then
  2562.     with_Xpm=yes
  2563.     Xpm_LIBS="-l${smr_lib}"
  2564.     elif test "$withval" = no; then
  2565.     with_Xpm=no
  2566.     Xpm_LIBS=
  2567.     else
  2568.     with_Xpm=yes
  2569.     if test -f "$withval"; then
  2570.         Xpm_LIBS=$withval
  2571.     elif test -d "$withval"; then
  2572.         Xpm_LIBS="-L$withval -l${smr_lib}"
  2573.     else
  2574.         { echo "configure: error: argument must be boolean" 1>&2; exit 1; }
  2575.     fi
  2576.     fi
  2577.  
  2578. else
  2579.      
  2580.     with_Xpm=maybe
  2581.     Xpm_LIBS="-l${smr_lib}"
  2582.  
  2583. fi
  2584.  
  2585. if test "$with_Xpm" != no; then
  2586.     echo $ac_n "checking for XpmCreatePixmapFromData in -l$smr_lib""... $ac_c" 1>&6
  2587. echo "configure:2588: checking for XpmCreatePixmapFromData in -l$smr_lib" >&5
  2588. ac_lib_var=`echo $smr_lib'_'XpmCreatePixmapFromData | sed 'y%./+-%__p_%'`
  2589. if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  2590.   echo $ac_n "(cached) $ac_c" 1>&6
  2591. else
  2592.   ac_save_LIBS="$LIBS"
  2593. LIBS="-l$smr_lib ${Xpm_LIBS} $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS $LIBS"
  2594. cat > conftest.$ac_ext <<EOF
  2595. #line 2596 "configure"
  2596. #include "confdefs.h"
  2597. /* Override any gcc2 internal prototype to avoid an error.  */
  2598. /* We use char because int might match the return type of a gcc2
  2599.     builtin and then its argument prototype would still apply.  */
  2600. char XpmCreatePixmapFromData();
  2601.  
  2602. int main() {
  2603. XpmCreatePixmapFromData()
  2604. ; return 0; }
  2605. EOF
  2606. if { (eval echo configure:2607: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  2607.   rm -rf conftest*
  2608.   eval "ac_cv_lib_$ac_lib_var=yes"
  2609. else
  2610.   echo "configure: failed program was:" >&5
  2611.   cat conftest.$ac_ext >&5
  2612.   rm -rf conftest*
  2613.   eval "ac_cv_lib_$ac_lib_var=no"
  2614. fi
  2615. rm -f conftest*
  2616. LIBS="$ac_save_LIBS"
  2617.  
  2618. fi
  2619. if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  2620.   echo "$ac_t""yes" 1>&6
  2621.   smr_havelib=yes
  2622. else
  2623.   echo "$ac_t""no" 1>&6
  2624. smr_havelib=no
  2625. fi
  2626.  
  2627.     if test "$smr_havelib" = yes -a "$smr_header" != ""; then
  2628.     
  2629.  
  2630. # Check whether --with-Xpm-includes or --without-Xpm-includes was given.
  2631. if test "${with_Xpm_includes+set}" = set; then
  2632.   withval="$with_Xpm_includes"
  2633.   
  2634.     if test -d "$withval"; then
  2635.     Xpm_CFLAGS="-I${withval}"
  2636.     else
  2637.     { echo "configure: error: argument must be a directory" 1>&2; exit 1; }
  2638.     fi
  2639. fi
  2640.  
  2641.  
  2642. smr_test_CPPFLAGS="${CPPFLAGS+set}"
  2643. smr_save_CPPFLAGS="$CPPFLAGS"
  2644. CPPFLAGS="$CPPFLAGS ${Xpm_CFLAGS}"
  2645.  
  2646.     
  2647.     for ac_hdr in $smr_header
  2648. do
  2649. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  2650. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  2651. echo "configure:2652: checking for $ac_hdr" >&5
  2652. if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  2653.   echo $ac_n "(cached) $ac_c" 1>&6
  2654. else
  2655.   cat > conftest.$ac_ext <<EOF
  2656. #line 2657 "configure"
  2657. #include "confdefs.h"
  2658. #include <$ac_hdr>
  2659. EOF
  2660. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  2661. { (eval echo configure:2662: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  2662. ac_err=`grep -v '^ *+' conftest.out`
  2663. if test -z "$ac_err"; then
  2664.   rm -rf conftest*
  2665.   eval "ac_cv_header_$ac_safe=yes"
  2666. else
  2667.   echo "$ac_err" >&5
  2668.   echo "configure: failed program was:" >&5
  2669.   cat conftest.$ac_ext >&5
  2670.   rm -rf conftest*
  2671.   eval "ac_cv_header_$ac_safe=no"
  2672. fi
  2673. rm -f conftest*
  2674. fi
  2675. if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  2676.   echo "$ac_t""yes" 1>&6
  2677.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  2678.   cat >> confdefs.h <<EOF
  2679. #define $ac_tr_hdr 1
  2680. EOF
  2681.  
  2682. else
  2683.   echo "$ac_t""no" 1>&6
  2684. fi
  2685. done
  2686.  
  2687.  
  2688. if test "$smr_test_CPPFLAGS" = set; then
  2689.     CPPFLAGS=$smr_save_CPPFLAGS
  2690. else
  2691.     unset CPPFLAGS
  2692. fi
  2693.  
  2694.     smr_safe=`echo "$smr_header" | sed 'y%./+-%__p_%'`
  2695.     if eval "test \"`echo '$ac_cv_header_'$smr_safe`\" != yes"; then
  2696.         smr_havelib=no
  2697.     fi
  2698.     fi
  2699.     if test "$smr_havelib" = yes; then
  2700.     echo "$ac_t""Using Xpm library" 1>&6
  2701.     else
  2702.     Xpm_LIBS=
  2703.     Xpm_CFLAGS=
  2704.     if test "$with_Xpm" = maybe; then
  2705.         echo "$ac_t""Not using Xpm library" 1>&6
  2706.     else
  2707.         echo "configure: warning: Requested Xpm library not found!" 1>&2
  2708.     fi
  2709.     fi
  2710. fi
  2711.  
  2712.  
  2713.  
  2714. trap '' 1 2 15
  2715. cat > confcache <<\EOF
  2716. # This file is a shell script that caches the results of configure
  2717. # tests run on this system so they can be shared between configure
  2718. # scripts and configure runs.  It is not useful on other systems.
  2719. # If it contains results you don't want to keep, you may remove or edit it.
  2720. #
  2721. # By default, configure uses ./config.cache as the cache file,
  2722. # creating it if it does not exist already.  You can give configure
  2723. # the --cache-file=FILE option to use a different cache file; that is
  2724. # what configure does when it calls configure scripts in
  2725. # subdirectories, so they share the cache.
  2726. # Giving --cache-file=/dev/null disables caching, for debugging configure.
  2727. # config.status only pays attention to the cache file if you give it the
  2728. # --recheck option to rerun configure.
  2729. #
  2730. EOF
  2731. # The following way of writing the cache mishandles newlines in values,
  2732. # but we know of no workaround that is simple, portable, and efficient.
  2733. # So, don't put newlines in cache variables' values.
  2734. # Ultrix sh set writes to stderr and can't be redirected directly,
  2735. # and sets the high bit in the cache file unless we assign to the vars.
  2736. (set) 2>&1 |
  2737.   case `(ac_space=' '; set) 2>&1` in
  2738.   *ac_space=\ *)
  2739.     # `set' does not quote correctly, so add quotes (double-quote substitution
  2740.     # turns \\\\ into \\, and sed turns \\ into \).
  2741.     sed -n \
  2742.       -e "s/'/'\\\\''/g" \
  2743.       -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
  2744.     ;;
  2745.   *)
  2746.     # `set' quotes correctly as required by POSIX, so do not add quotes.
  2747.     sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
  2748.     ;;
  2749.   esac >> confcache
  2750. if cmp -s $cache_file confcache; then
  2751.   :
  2752. else
  2753.   if test -w $cache_file; then
  2754.     echo "updating cache $cache_file"
  2755.     cat confcache > $cache_file
  2756.   else
  2757.     echo "not updating unwritable cache $cache_file"
  2758.   fi
  2759. fi
  2760. rm -f confcache
  2761.  
  2762. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  2763.  
  2764. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  2765. # Let make expand exec_prefix.
  2766. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  2767.  
  2768. # Any assignment to VPATH causes Sun make to only execute
  2769. # the first set of double-colon rules, so remove it if not needed.
  2770. # If there is a colon in the path, we need to keep it.
  2771. if test "x$srcdir" = x.; then
  2772.   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  2773. fi
  2774.  
  2775. trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
  2776.  
  2777. # Transform confdefs.h into DEFS.
  2778. # Protect against shell expansion while executing Makefile rules.
  2779. # Protect against Makefile macro expansion.
  2780. cat > conftest.defs <<\EOF
  2781. s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
  2782. s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
  2783. s%\[%\\&%g
  2784. s%\]%\\&%g
  2785. s%\$%$$%g
  2786. EOF
  2787. DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
  2788. rm -f conftest.defs
  2789.  
  2790.  
  2791. # Without the "./", some shells look in PATH for config.status.
  2792. : ${CONFIG_STATUS=./config.status}
  2793.  
  2794. echo creating $CONFIG_STATUS
  2795. rm -f $CONFIG_STATUS
  2796. cat > $CONFIG_STATUS <<EOF
  2797. #! /bin/sh
  2798. # Generated automatically by configure.
  2799. # Run this file to recreate the current configuration.
  2800. # This directory was configured as follows,
  2801. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  2802. #
  2803. # $0 $ac_configure_args
  2804. #
  2805. # Compiler output produced by configure, useful for debugging
  2806. # configure, is in ./config.log if it exists.
  2807.  
  2808. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
  2809. for ac_option
  2810. do
  2811.   case "\$ac_option" in
  2812.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2813.     echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2814.     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2815.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2816.     echo "$CONFIG_STATUS generated by autoconf version 2.12"
  2817.     exit 0 ;;
  2818.   -help | --help | --hel | --he | --h)
  2819.     echo "\$ac_cs_usage"; exit 0 ;;
  2820.   *) echo "\$ac_cs_usage"; exit 1 ;;
  2821.   esac
  2822. done
  2823.  
  2824. ac_given_srcdir=$srcdir
  2825. ac_given_INSTALL="$INSTALL"
  2826.  
  2827. trap 'rm -fr `echo "Makefile xpdf/Makefile ltk/Makefile goo/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
  2828. EOF
  2829. cat >> $CONFIG_STATUS <<EOF
  2830.  
  2831. # Protect against being on the right side of a sed subst in config.status.
  2832. sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
  2833.  s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
  2834. $ac_vpsub
  2835. $extrasub
  2836. s%@CFLAGS@%$CFLAGS%g
  2837. s%@CPPFLAGS@%$CPPFLAGS%g
  2838. s%@CXXFLAGS@%$CXXFLAGS%g
  2839. s%@DEFS@%$DEFS%g
  2840. s%@LDFLAGS@%$LDFLAGS%g
  2841. s%@LIBS@%$LIBS%g
  2842. s%@exec_prefix@%$exec_prefix%g
  2843. s%@prefix@%$prefix%g
  2844. s%@program_transform_name@%$program_transform_name%g
  2845. s%@bindir@%$bindir%g
  2846. s%@sbindir@%$sbindir%g
  2847. s%@libexecdir@%$libexecdir%g
  2848. s%@datadir@%$datadir%g
  2849. s%@sysconfdir@%$sysconfdir%g
  2850. s%@sharedstatedir@%$sharedstatedir%g
  2851. s%@localstatedir@%$localstatedir%g
  2852. s%@libdir@%$libdir%g
  2853. s%@includedir@%$includedir%g
  2854. s%@oldincludedir@%$oldincludedir%g
  2855. s%@infodir@%$infodir%g
  2856. s%@mandir@%$mandir%g
  2857. s%@OPTIONS@%$OPTIONS%g
  2858. s%@CC@%$CC%g
  2859. s%@CXX@%$CXX%g
  2860. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  2861. s%@INSTALL_DATA@%$INSTALL_DATA%g
  2862. s%@RANLIB@%$RANLIB%g
  2863. s%@STRIP@%$STRIP%g
  2864. s%@EXE@%$EXE%g
  2865. s%@LIBPREFIX@%$LIBPREFIX%g
  2866. s%@AR@%$AR%g
  2867. s%@CPP@%$CPP%g
  2868. s%@X_CFLAGS@%$X_CFLAGS%g
  2869. s%@X_PRE_LIBS@%$X_PRE_LIBS%g
  2870. s%@X_LIBS@%$X_LIBS%g
  2871. s%@X_EXTRA_LIBS@%$X_EXTRA_LIBS%g
  2872. s%@Xpm_LIBS@%$Xpm_LIBS%g
  2873. s%@Xpm_CFLAGS@%$Xpm_CFLAGS%g
  2874.  
  2875. CEOF
  2876. EOF
  2877.  
  2878. cat >> $CONFIG_STATUS <<\EOF
  2879.  
  2880. # Split the substitutions into bite-sized pieces for seds with
  2881. # small command number limits, like on Digital OSF/1 and HP-UX.
  2882. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
  2883. ac_file=1 # Number of current file.
  2884. ac_beg=1 # First line for current file.
  2885. ac_end=$ac_max_sed_cmds # Line after last line for current file.
  2886. ac_more_lines=:
  2887. ac_sed_cmds=""
  2888. while $ac_more_lines; do
  2889.   if test $ac_beg -gt 1; then
  2890.     sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
  2891.   else
  2892.     sed "${ac_end}q" conftest.subs > conftest.s$ac_file
  2893.   fi
  2894.   if test ! -s conftest.s$ac_file; then
  2895.     ac_more_lines=false
  2896.     rm -f conftest.s$ac_file
  2897.   else
  2898.     if test -z "$ac_sed_cmds"; then
  2899.       ac_sed_cmds="sed -f conftest.s$ac_file"
  2900.     else
  2901.       ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
  2902.     fi
  2903.     ac_file=`expr $ac_file + 1`
  2904.     ac_beg=$ac_end
  2905.     ac_end=`expr $ac_end + $ac_max_sed_cmds`
  2906.   fi
  2907. done
  2908. if test -z "$ac_sed_cmds"; then
  2909.   ac_sed_cmds=cat
  2910. fi
  2911. EOF
  2912.  
  2913. cat >> $CONFIG_STATUS <<EOF
  2914.  
  2915. CONFIG_FILES=\${CONFIG_FILES-"Makefile xpdf/Makefile ltk/Makefile goo/Makefile"}
  2916. EOF
  2917. cat >> $CONFIG_STATUS <<\EOF
  2918. for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2919.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  2920.   case "$ac_file" in
  2921.   *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
  2922.        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  2923.   *) ac_file_in="${ac_file}.in" ;;
  2924.   esac
  2925.  
  2926.   # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
  2927.  
  2928.   # Remove last slash and all that follows it.  Not all systems have dirname.
  2929.   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2930.   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2931.     # The file is in a subdirectory.
  2932.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  2933.     ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
  2934.     # A "../" for each directory in $ac_dir_suffix.
  2935.     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2936.   else
  2937.     ac_dir_suffix= ac_dots=
  2938.   fi
  2939.  
  2940.   case "$ac_given_srcdir" in
  2941.   .)  srcdir=.
  2942.       if test -z "$ac_dots"; then top_srcdir=.
  2943.       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  2944.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2945.   *) # Relative path.
  2946.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2947.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  2948.   esac
  2949.  
  2950.   case "$ac_given_INSTALL" in
  2951.   [/$]*) INSTALL="$ac_given_INSTALL" ;;
  2952.   *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
  2953.   esac
  2954.  
  2955.   echo creating "$ac_file"
  2956.   rm -f "$ac_file"
  2957.   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  2958.   case "$ac_file" in
  2959.   *Makefile*) ac_comsub="1i\\
  2960. # $configure_input" ;;
  2961.   *) ac_comsub= ;;
  2962.   esac
  2963.  
  2964.   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
  2965.   sed -e "$ac_comsub
  2966. s%@configure_input@%$configure_input%g
  2967. s%@srcdir@%$srcdir%g
  2968. s%@top_srcdir@%$top_srcdir%g
  2969. s%@INSTALL@%$INSTALL%g
  2970. " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
  2971. fi; done
  2972. rm -f conftest.s*
  2973.  
  2974. EOF
  2975. cat >> $CONFIG_STATUS <<EOF
  2976.  
  2977. EOF
  2978. cat >> $CONFIG_STATUS <<\EOF
  2979.  
  2980. exit 0
  2981. EOF
  2982. chmod +x $CONFIG_STATUS
  2983. rm -fr confdefs* $ac_clean_files
  2984. test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
  2985.  
  2986.  
  2987. if test -n "$no_x"; then
  2988.   echo "configure: warning: Couldn't find X -- you will be able to compile
  2989.         pdftops, pdftotext, and pdfinfo, but not xpdf" 1>&2
  2990. fi
  2991.